Get started with Bitbucket Cloud
New to Bitbucket Cloud? Check out our get started guides for new users.
To get your code changes into Bitbucket, you work on them locally before you add, commit, and push them to Bitbucket.
Create your new files or edit existing files in your local project directory.
From the command line, enter cd <path_to_local_repo> so that you can enter commands for your repository.
Enter git add --all at the command line to add the files or changes to the repository.
Enter git commit -m '<commit_message>' at the command line to commit new files/changes to the local repository. For the <commit_message> , you can enter anything that describes the changes you are committing.
Enter git push at the command line to copy your files from your local repository to Bitbucket.
If prompted for authentication, enter your app password.
Was this helpful?