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 有没有办法忽略对文件的本地更改,但继续将其跟踪到远程仓库中?我不想获取但不推送文件。
就我而言,我希望 .project eclipse 文件第一次在“主”存储库中提交,但开发团队不必推送 eclipse 插件所做的更改。
虽然不是官方方式,但这是我们使用的工作流程:
.example重命名并在文件名末尾添加 add 。
.example
将实际文件名添加到您的.gitignore文件中(并提交.gitignore文件)。
.gitignore
在本地,将文件复制到具有实际文件名的副本(现在被忽略)。