Skip to content

Pushing your branch

andyklimczak edited this page Oct 2, 2014 · 1 revision

Pushing your branch 101

After adding your files (git add .)

After committing (git add commit -m "commit message")

Use this to push to upstream git push --set-upstream origin <branch name>

so if you want to push your "crazy_fix" branch, you would type

git push --set-upstream origin crazy_fix

Clone this wiki locally