近期在git遇到幾個(gè)問題,讓我重新認(rèn)識(shí)到git的強(qiáng)大性,下面列出來(lái)記錄一下
有一個(gè)數(shù)據(jù)庫(kù)的配置文件,在用 git add
添加到 index file
時(shí)不能透露了相關(guān)配置。而如果用 .gitignore
去操作這需求,卻會(huì)放棄add整個(gè)文件,如果這樣做的話,commit后其他人就看不到這里面有個(gè)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)友評(píng)論