.gitignore

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 # .gitignore - List of filenames git should ignore
     3 # Filenames that should be ignored wherever they appear
     4 *~
     5 *.pyc
     6 *.pyo
     7 TAGS
     8 tags
     9 ID
    10 .DS_Store*
    12 # Vim swap files.
    13 .*.sw[a-z]
    15 # User files that may appear at the root
    16 #/.mozconfig*
    17 /mozconfig
    18 /configure
    19 /config.cache
    20 /config.log
    21 /.clang_complete
    22 /mach.ini
    24 # Empty marker file that's generated when we check out NSS
    25 security/manager/.nss.checkout
    27 # Build directories
    28 /obj*/
    30 # Build directories for js shell
    31 */_DBG.OBJ/
    32 */_OPT.OBJ/
    34 # SpiderMonkey configury
    35 js/src/configure
    36 js/src/autom4te.cache
    37 # SpiderMonkey test result logs
    38 js/src/tests/results-*.html
    39 js/src/tests/results-*.txt
    41 # Java HTML5 parser classes
    42 parser/html/java/htmlparser/
    43 parser/html/java/javaparser/
    45 # Ignore the files and directory that Eclipse IDE creates
    46 .project
    47 .cproject
    48 .settings/
    50 # Python virtualenv artifacts.
    51 python/psutil/*.so
    52 python/psutil/*.pyd
    53 python/psutil/build/
    55 # Ignore chrome.manifest files from the devtools loader
    56 browser/devtools/chrome.manifest
    57 toolkit/devtools/chrome.manifest

mercurial