覺得我們的內容實用嗎? MyApollo 電子報讀者募集中!歡迎訂閱電子報!
開發時有時候會遇到 2 個分支(branch)部分相依的情況,例如需要在某分支內的某一檔案,這時又不想整個分支進行合併的話,可以考慮使用 checkout 單檔的方法。
指令也蠻簡單的:
$ git fetch origin <branch>
$ git checkout origin/<branch> -- <the file you want> <file>
先 fetch 某分支之後,再將該檔案 checkout 出來。
例如把 origin/new-feature 裡的 feature/models.py checkout 出來:
$ git fetch origin new-feature
$ git checkout origin/new-feature -- feature/models.py feature/models.py
覺得我們的內容實用嗎? MyApollo 電子報讀者募集中!歡迎訂閱電子報!