-
Notifications
You must be signed in to change notification settings - Fork 5
Git
Nicolas Bock edited this page Aug 27, 2018
·
3 revisions
Please configure git
by running
git config --local pull.ff only
git config --local pull.rebase preserve
git config --local push.default simple
git config --local user.name "Your Name"
git config --local user.email your@email
git config --local core.editor nano
In order to update your repository from GitHub, run the following command:
git remote update --prune
git rebase origin/master master
The whole commit history can be nicely visualized with
git log --graph --decorate --all