近期在git遇到幾個問題,讓我重新認識到git的強大性,下面列出來記錄一下

有一個數(shù)據(jù)庫的配置文件,在用 git add 添加到 index file 時不能透露了相關(guān)配置。而如果用 .gitignore 去操作這需求,卻會放棄add整個文件,如果這樣做的話,commit后其他人就看不到這里面有個config配置文件了,這結(jié)果很明顯不是我們想要的。怎么做呢?搜索了下要使用git下面的filter配置去過濾那些秘密。官方文檔的描述如下:

filter.driver.clean
The command which is used to convert the content of a worktree file to a blob upon checkin. See gitattributes(5) for details.

網(wǎng)友評論