git-ignore(1) -- Ignore untracked files ======================================= ## SYNOPSIS `git-ignore` [<pattern>...] ## DESCRIPTION Adds the given _pattern_s to a gitignore file. ## OPTIONS ## EXAMPLES To lazy to open up _.gitignore_? me too! simply pass some patterns: $ git ignore build "*.o" "*.log" ... added 'build' ... added '*.o' ... added '*.log' Running `git-ignore` without a pattern will display the current patterns: $ git ignore build *.o *.log ## AUTHOR Written by Tj Holowaychuk <> ## REPORTING BUGS <> ## SEE ALSO <>