Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个 github repo,我使用它。我希望每次更新(有一个新的提交)时,这些文件都会复制到我的电脑上。
我曾尝试在命令提示符下使用 mklink,但这似乎不起作用。有任何想法吗?
如果除了您自己之外还有其他贡献者对 repo 进行提交,您可以使用git fetch检索所有新提交或对 repo 的贡献。要获得最新的提交,您需要在您的机器上本地 cd 进入 repo。运行 a git status,以确保一切正常。如果一切都清楚,您可以运行一个git fetch并且应该将所有最新更改带入您的本地存储库。
git status
git fetch
避免合并冲突(提交和/或推送时提交重叠的结果)的一个好方法是在最新提交git pull之前运行 a。git push
git pull
git push
希望这可以帮助!!