git

git How To
Create and push a branch
September 27, 2018
0
$ git fetch && git checkout your_branch_name $ git add . $ git commit -m “adding a change from the feature branch” $ git push origin your_branch_name Reference: https://confluence.atlassian.com/get-started-with-bitbucket/create-and-push-a-branch-862720857.html