0
我嘗試了In git, is there a simple way of introducing an unrelated branch to a repository?,但找不到任何正確的解決方案。Git在新目錄中創建不相關的分支
我確切想要創建一個新分支,比如v2
。分支v2
將具有master
分支的內容,但應獨立於master
。 v2
分支也應該在一個單獨的目錄中。
我目前的本地目錄是:
|light-mvc
| --master // contains the master branch
| --v2 // should contain the v2 branch
和我的遠程回購是https://github.com/YashKumarVerma/Light-PHP-MVC(如果它的事項)
我是否必須在'master'文件夾內運行'git checkout branchname' –
'錯誤:pathspec'v2'與git中已知的任何文件都不匹配:'當在'git checkout v2'中運行'git checkout v2'時主目錄 –
不,它應該是你使用'git init'初始化git的地方。這將是'light-mvc'在你的情況下。 –