Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 343 Bytes

update_branch_from_master.md

File metadata and controls

18 lines (12 loc) · 343 Bytes

Update branch from master

When the world is turning around you and your branch

# Checkout your branch
$ git checkout <branch>

# Merge changes from master
$ git merge origin/master

# Push changes
$ git push

References