我有一个GIT回购。大多数文件都以正常方式工作。但是我需要在本地更改一些文件,但我不想将这些更改推送到repo,它们仅用于本地设置。我怎么能这样做?
答案 0 :(得分:2)
您可以使用git update-index
,格式如下:
git update-index --assume-unchanged my.properties
然后, Git将不再检查工作副本是否有my.properties
的更改。要重新开始跟踪此文件的更改,请执行相反的操作:
git update-index --no-assume-unchanged my.properties
official documentation中的更多细节。
答案 1 :(得分:1)
你可以:
$ git update-index --assume-unchanged <filename>