Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 678 Bytes

fork.md

File metadata and controls

29 lines (19 loc) · 678 Bytes

Github Fork

git remote -v

origin  https://github.com/your-username/forked-repository.git (fetch)
origin  https://github.com/your-username/forked-repository.git (push)
upstream    https://github.com/original-owner-username/original-repository.git (fetch)
upstream    https://github.com/original-owner-username/original-repository.git (push)
git fetch upstream
git checkout master
git merge upstream/master

使用情境

  • 常發生在長期無人維護的專案,但你需要使用並修改。
  • 你需要用某個專案當基底,開發出一條完全新的路線。