I am trying to push local changes to a BitBucket. To connect to BitBucket:
- 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
However, I do not want to push to the MAIN Branch. I want to push to the Branch local/develop
I am not sure how to do this.
Any help with changing Branches will be VERY helpful