diff options
-rw-r--r-- | gitignore | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,4 +1,17 @@ +# Ignore original and rejected files in general +*.orig +*.rej + +# Ignore patches in top level directory (common place where I generate them) +/*.patch + +# Ignore backup files in general +*~ + # C development .gdbinit .ccls-cache/ compile_commands.json + +# Common python environment directory +/env |