使用下面的指令,可以在所有空資料底下新增一個檔案 empty
find . -name .git -prune -o -type d -empty -exec touch {}/.gitignore \;
另外如果使用 Yii Framework ,想要忽略資料夾 \assets 及 \protected\runtime 內的檔案,可以在 Repository 根目錄底下新增一個檔案 .gitignore,內容如下:
# Ignore section /assets/* /protected/runtime/* # Except section !/assets/empty !/protected/runtime/empty
文章標籤
全站熱搜
留言列表