Permalink
Cannot retrieve contributors at this time
executable file
8 lines (6 sloc)
238 Bytes
|
#!/bin/sh |
|
|
|
# Syncs a forked repository with its upstream. |
|
|
|
git fetch upstream |
|
git checkout master |
|
git rebase upstream/master # it is important to rebase (nstead of merging) at this point, in order to avoid any merge conflicts |
|
git push -f |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.