diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-05 19:00:57 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-05 19:00:57 -0400 |
commit | 7d93b9cb09ce874b84eff35f98f77ee863b66894 (patch) | |
tree | 7830b57f29b67142e2e4e5ae961410212c8ded62 | |
parent | 7eef66af3f53ba9ed758af7a3c6f2e636ff4a55f (diff) |
Sync .gitignore with pokered and pokegold
-rw-r--r-- | .gitignore | 59 |
1 files changed, 29 insertions, 30 deletions
diff --git a/.gitignore b/.gitignore index e92f33000..ec594cd9d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,30 +1,34 @@ -# generated -*.tx +# compiled objects *.o -# precompiled python -*.pyc -*$py.class - -# no binaries -*.exe +# compiled graphics +*.1bpp +*.2bpp +*.lz +*.gbcpal +*.dimensions +*.animated.tilemap +*.sgb.tilemap +gfx/pokemon/*/bitmask.asm +gfx/pokemon/*/frames.asm +!gfx/pokemon/unown/bitmask.asm +!gfx/pokemon/unown/frames.asm -# roms +# compiled roms *.gbc *.gb -# save game files -*.sgm -*.sav -*.rtc -*.sn* -*.sa* -*.sg1 - # rgbds extras *.map *.sym +# tool binaries +*.exe + +# precompiled python +*.pyc +*$py.class + # compare.sh baserom.txt pokecrystal.txt @@ -32,6 +36,14 @@ pokecrystal.txt # used_space.py used_space.png +# save game files +*.sgm +*.sav +*.rtc +*.sn* +*.sa* +*.sg1 + # vim configuration # http://www.vim.org/scripts/script.php?script_id=441 .lvimrc @@ -42,16 +54,3 @@ used_space.png # macos files .DS_STORE - -# compiled graphics -*.1bpp -*.2bpp -*.lz -*.gbcpal -*.dimensions -*.animated.tilemap -*.sgb.tilemap -gfx/pokemon/*/bitmask.asm -gfx/pokemon/*/frames.asm -!gfx/pokemon/unown/bitmask.asm -!gfx/pokemon/unown/frames.asm |