diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-26 13:35:25 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-26 13:35:25 +0000 |
commit | b18125195c17ad6c7e42792fe3351f85e957fae2 (patch) | |
tree | 4e31759d03dbc4b3331c787140b591d2311ba7dc | |
parent | 9de40e67e51955576c87785db0c6ce98050c64fd (diff) | |
download | usdx-b18125195c17ad6c7e42792fe3351f85e957fae2.tar.gz usdx-b18125195c17ad6c7e42792fe3351f85e957fae2.tar.xz usdx-b18125195c17ad6c7e42792fe3351f85e957fae2.zip |
make life easier for git-users with .gitignore files. Especially it prevents git from removing empty directories.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1926 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | .gitignore | 20 | ||||
-rw-r--r-- | artwork/.gitignore | 1 | ||||
-rw-r--r-- | build/.gitignore | 1 | ||||
-rw-r--r-- | build/delphi-win/.gitignore | 1 | ||||
-rw-r--r-- | game/.gitignore | 9 | ||||
-rw-r--r-- | game/visuals/.gitignore | 2 | ||||
-rw-r--r-- | src/.gitignore | 8 |
7 files changed, 42 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..90ba9716 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +.svn
+*.orig
+*.dcu
+*.ppu
+*.rst
+*.compiled
+*.or
+*.o
+*.a
+*.exe
+*.dll
+*.identcache
+*.bdsproj.local
+*.bak
+*~
+Thumbs.db
+Makefile
+config.log
+config.status
+__history
diff --git a/artwork/.gitignore b/artwork/.gitignore new file mode 100644 index 00000000..59424db9 --- /dev/null +++ b/artwork/.gitignore @@ -0,0 +1 @@ +# don't delete this file as it prevents git from removing this directory diff --git a/build/.gitignore b/build/.gitignore new file mode 100644 index 00000000..caf367b0 --- /dev/null +++ b/build/.gitignore @@ -0,0 +1 @@ +*.res
diff --git a/build/delphi-win/.gitignore b/build/delphi-win/.gitignore new file mode 100644 index 00000000..59424db9 --- /dev/null +++ b/build/delphi-win/.gitignore @@ -0,0 +1 @@ +# don't delete this file as it prevents git from removing this directory diff --git a/game/.gitignore b/game/.gitignore new file mode 100644 index 00000000..eed4f3f0 --- /dev/null +++ b/game/.gitignore @@ -0,0 +1,9 @@ +playlists +plugins +screenshots +songs +config.ini +cover.db +ultrastardx +Ultrastar.db +Error.log diff --git a/game/visuals/.gitignore b/game/visuals/.gitignore new file mode 100644 index 00000000..39ea0e37 --- /dev/null +++ b/game/visuals/.gitignore @@ -0,0 +1,2 @@ +# don't delete this file as it prevents git from removing this directory +projectM diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 00000000..1c20f512 --- /dev/null +++ b/src/.gitignore @@ -0,0 +1,8 @@ +*.cfg
+*.local
+*.bdsproj
+*.identcache
+clean.bat
+config-linux.inc
+paths.inc
+ultrastardx-*.lp[i|s]
|