Golden Codes - armanexplorer planet

Practical code snippets for Django, Python, Bash, Git and All!

View on GitHub

pull from local

# pull from master (it is equal to `git fetch . master && git merge FETCH_HEAD`)
git pull . master

# OR merge with master
git merge master

# OR rebase with master (maybe prevent extra commmit)
git rebase master