Better 'git pull'
Add to your ~/.gitconfig:
[alias]
update = !git fetch -v && git rebase originThen use git update which will rebase any changes to master on top of the new commits. This is basically how svn update works. 1 year ago • 0 notes
Add to your ~/.gitconfig:
[alias]
update = !git fetch -v && git rebase originThen use git update which will rebase any changes to master on top of the new commits. This is basically how svn update works. 1 year ago • 0 notes