『壹』 git 如何忽略項目中的子文件夾
在使用git tracking 項目文件的變化時,如果項目中包含大的數據文件變化,會佔用大量的空間用於記錄歷史,對於不需要tracking的文件,可以通過以下方法去除git tracking,以節省磁碟空間。
step1: 在git tracking目錄下,簡歷文件,文件名為" .gitignore "。對於windows系統,系統禁止建立該文件名為「 .gitignore 」的文件,可以新建一個文件,重命名為" .gitignore. "
step2: 在文件中添加不需要跟蹤的文件夾,並以'/' 結尾,如:
'excludedFOlder/'
reference: https://www.atlassian.com/git/tutorials/saving-changes/gitignore
注意,gitignor文件的編輯請使用windows自帶notepad,如果某些時候gitignor不工作,使用下面語句清空cache:
git rm -r --cached .
git add .
git commit -m "fixed untracked files"