Skip to content

Instantly share code, notes, and snippets.

@asharirfan
Created November 5, 2018 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asharirfan/c5cf09604e5bccb3aeeb30590a3ab931 to your computer and use it in GitHub Desktop.
Save asharirfan/c5cf09604e5bccb3aeeb30590a3ab931 to your computer and use it in GitHub Desktop.
🏎 Sync fork in seconds with zsh alias and function
# Alias for adding upstream remote.
# Usage: grau https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
alias grau="git remote add upstream"
# Function to sync fork with upstream remote.
function gsyncfork() {
git fetch upstream
git pull upstream master
git push origin master
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment