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,这是一个相当大的代码库,所以推送需要时间。
据我所知,git 获取更改然后上传,所以在推送进行时我是否可以安全地继续工作,或者我是否需要等待它完成才能修改文件?
当 Git 推送时,它不会从工作树中读取或写入任何内容,只会从.git文件夹中读取或写入内容。
.git
所以是的,你可以安全地继续工作。