diff options
author | Matthew Wallace <1502616@abertay.ac.uk> | 2017-11-29 21:36:52 +0000 |
---|---|---|
committer | Brendan Forster <github@brendanforster.com> | 2017-11-30 08:36:52 +1100 |
commit | dc0ca6d8d5e61dae1bd051f9a99c1414890069f6 (patch) | |
tree | dfc3cee120e79cabb07c0a749cfa61380471ceee /Unity.gitignore | |
parent | 86e01548dd97d6a1b5fc9ad303f10111b17ce0a9 (diff) | |
download | gitignore-dc0ca6d8d5e61dae1bd051f9a99c1414890069f6.tar.gz gitignore-dc0ca6d8d5e61dae1bd051f9a99c1414890069f6.zip |
Fixing .gitignore (#2531)
* Update Unity.gitignore
Prevents directories: `Library`
`Temp`
`Obj`
`Build`
`Builds`
`Assets/AssetStoreTools`
from being included in the remote if the project sits in the `Assets` folder.
* removed wildcards from Unity's .gitignore
Diffstat (limited to 'Unity.gitignore')
-rw-r--r-- | Unity.gitignore | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Unity.gitignore b/Unity.gitignore index 14372929..75e5b140 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -1,9 +1,9 @@ -*/[Ll]ibrary/ -*/[Tt]emp/ -*/[Oo]bj/ -*/[Bb]uild/ -*/[Bb]uilds/ -*/Assets/AssetStoreTools* +[Ll]ibrary/ +[Tt]emp/ +[Oo]bj/ +[Bb]uild/ +[Bb]uilds/ +Assets/AssetStoreTools* # Visual Studio 2015 cache directory /.vs/ |