mirror of
https://github.com/vale981/gitignore
synced 2025-03-05 09:51:42 -05:00
Fix solution/project files for nested directories.
By having the leading `/` infront of the `*` makes these types of files relative to the directory the gitignore is in. If you create a Unity project inside of a git directory Unity forces you to create a new directory, thus not picking up these files.
This commit is contained in:
parent
c6e6d99b65
commit
103740bdb1
1 changed files with 8 additions and 8 deletions
|
@ -4,14 +4,14 @@
|
|||
[Bb]uild/
|
||||
|
||||
# Autogenerated VS/MD solution and project files
|
||||
/*.csproj
|
||||
/*.unityproj
|
||||
/*.sln
|
||||
/*.suo
|
||||
/*.user
|
||||
/*.userprefs
|
||||
/*.pidb
|
||||
/*.booproj
|
||||
*.csproj
|
||||
*.unityproj
|
||||
*.sln
|
||||
*.suo
|
||||
*.user
|
||||
*.userprefs
|
||||
*.pidb
|
||||
*.booproj
|
||||
|
||||
#Unity3D Generated File On Crash Reports
|
||||
sysinfo.txt
|
||||
|
|
Loading…
Add table
Reference in a new issue