将分支克隆到 Github 中的不同文件夹
Clone branch to different folder in Github
我可以在 github 中将不同的分支克隆到本地计算机中的不同文件夹吗?
如果有任何贡献者请求拉取 master 分支或我的分支,我可以看到通知吗
创建一个新的 firectory 并将项目克隆到新文件夹中。
您必须 pull/push 每次更改才能同步它们。
在 git 2.5 及更高版本中,您可以使用 worktree
git worktree add second_path
现在两个 psth 共享同一个 repo。
我可以在 github 中将不同的分支克隆到本地计算机中的不同文件夹吗?
如果有任何贡献者请求拉取 master 分支或我的分支,我可以看到通知吗
创建一个新的 firectory 并将项目克隆到新文件夹中。
您必须 pull/push 每次更改才能同步它们。
在 git 2.5 及更高版本中,您可以使用 worktree
git worktree add second_path
现在两个 psth 共享同一个 repo。