根據你的意思,這聽起來像你可能使用.gitignore
文件來解決你的問題。一個.gitignore
文件會讓你忽視自己的Boost庫的未改變的部分。您可以創建一個.gitignore
文件在UNIX如下:
touch .gitignore
# or
nano .gitignore
你要確保你的.gitignore
文件是在你的項目目錄的頂部在那裏與你.git
文件夾。一旦你有一個.gitignore
文件,你可以把你不想讓git去追蹤在那裏,像這樣的文件和目錄路徑:
# This is the titan project gitignore file
# this section includes general files that should be ignored
*.txt
.project
*.csv
# these are general places to ignore in this project
.settings/
# this would let you ignore a directory from boost
boost/
如果每個人的提升的版本是相同的,你們是不是編輯工作吧,那麼它聽起來就像你可以放心地.gitignore
它。
這裏是GitHub的文檔的鏈接上的主題: https://help.github.com/articles/ignoring-files
我通常包括一個Makefile升壓分佈在我的倉庫壓縮包,以及邏輯提取和構建它 –