Skip to content

Instantly share code, notes, and snippets.

@dipendra-sharma
Forked from jessesquires/readme.md
Created April 29, 2021 20:40
Show Gist options
  • Save dipendra-sharma/b3382ccb8c419e7cc60f01996d7d2dd8 to your computer and use it in GitHub Desktop.
Save dipendra-sharma/b3382ccb8c419e7cc60f01996d7d2dd8 to your computer and use it in GitHub Desktop.
Script for Syncing a Fork
# Assumes that the git repository has upstream and remote urls set
# Assumes that you've committed your work on your current branch
current_branch=$(git rev-parse --abbrev-ref HEAD)
git fetch upstream
git checkout master
git merge upstream/master
git push # origin
git checkout $current_branch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment