Created
November 26, 2014 16:51
-
-
Save chichunchen/970a7e97c74a253a4503 to your computer and use it in GitHub Desktop.
Revisions
-
Chi-Chun, Chen created this gist
Nov 26, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ # Ignore all * # Unignore all with extensions !*.* # Unignore all dirs !*/ ### Above combination will ignore all files without extension ### # Ignore files with extension `.class` & `.sm` *.class *.sm # Ignore `bin` dir bin/ # or */bin/* # Unignore all `.jar` in `bin` dir !*/bin/*.jar # Ignore all `library.jar` in `bin` dir */bin/library.jar # Ignore a file with extension relative/path/to/dir/filename.extension # Ignore a file without extension relative/path/to/dir/anotherfile