About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
cachaito
5/10/2016 - 8:10 AM
share
Share
add_circle_outline
Save
Creating new branch
new git branch.md
content_copy
file_download
Rendered
Source
First, you must create your branch locally
git checkout -b your_branch
After that, you can work locally in your branch, when you are ready to share the branch, push it. The next command push the branch to the remote repository origin and tracks it
git push -u origin your_branch
clear