Skip to content

Instantly share code, notes, and snippets.

@dlobregon
Created December 9, 2016 23:19
Show Gist options
  • Save dlobregon/861633a262a79c33a332b6e87829d1fd to your computer and use it in GitHub Desktop.
Save dlobregon/861633a262a79c33a332b6e87829d1fd to your computer and use it in GitHub Desktop.
script para sincronizar repo fork con el repo origina
git fetch
git checkout master
git remote add upstream https://github.com/MINFIN-GT/sigpro
git fetch upstream
git rebase upstream/master
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment