1. 程式人生 > >source tree 如何忽略檔案

source tree 如何忽略檔案

 

 

點選“編輯”後進入.gitignore編輯頁面:

 

2. .gitignore檔案編輯:

忽略指定檔案:直接寫檔名

忽略資料夾:直接寫資料夾路徑,例:target或者target/ -> 忽略target下的所有檔案

忽略某型別的檔案:使用萬用字元*,例:*.class -> 忽略所有.class檔案