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.
我的一位同事在我们的项目上工作,并在不使用 git 的情况下将他更改的文件上传到我们的 ftp 服务器。
所以我将整个 FTP 目录下载到我的文档/github/project 目录并运行 git-hub 客户端。它显示需要进行 256 项更改,我提供了提交消息并点击同步,它显示了它的同步,但完成后它仍然显示有 256 个文件要提交。我尝试过多次提交并同步,但仍然停留在要提交的 256 个文件上。
我该怎么做才能使我 PC 上的 256 个更改文件与 Git-hub 同步?
为了暂存所有文件以进行提交,您可以执行以下操作:
git add -A
这会暂存所有文件以进行提交。在此之后,您可以提交暂存文件:
git commit -m "My colleague sucks"
最后,您可以使用以下命令将其推送到 github:
git push
或者在一行中:
git add -A && git commit -m "My colleague sucks" && git push