Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 290 Bytes

git.md

File metadata and controls

5 lines (5 loc) · 290 Bytes

Rebase forked repo with original repo

  1. git remote add upstream https://github.com/original-repo/goes-here.git
  2. git fetch upstream
  3. git rebase upstream/master
  4. git push origin master [--force]