gitignore cheatsheet

By xngo on February 22, 2019

# Ignore filename starting with 'openwritings' in any directories and sub-directories.
**openwritings*
 
# Ignore any directories and sub-directories with name 'build'
/**/build/
 
# Ignore everything, except .gitignore
* 
!.gitignore

About the author

Xuan Ngo is the founder of OpenWritings.net. He currently lives in Montreal, Canada. He loves to write about programming and open source subjects.