Gitignore over

I've been trying to make it so the splash screen icons for my app won't be ignored by git. It started with node_modules/ plugins/ and platforms/ being ignored. Then I tried to just ignore all the directories and files that weren't what I needed. Thats what's below.

node_modules/
plugins/
platforms/ios/TruckBlox/Plugins
platforms/ios/TruckBlox/main.m
platforms/ios/TruckBlox/Classes
platforms/ios/TruckBlox/TruckBlox-Info.plist
platforms/ios/TruckBlox/TruckBlox-Prefix.pch
platforms/ios/TruckBlox/config.xml
platforms/ios/TruckBlox/Resources/icons
platforms/ios/build
platforms/ios/cordova
platforms/ios/CordovaLib
platforms/ios/platform_www
platforms/ios/TruckBlox.xcodeproj
platforms/ios/www

!platforms/ios/TruckBlox/Resources/splash/
!platforms/ios/TruckBlox/Resources/splash/*

So now it should be not ignoring the splash folder with all the splash screen icons. This isn't the case though, when I do a git add, none of these files show up as changes, and when I commit, the only change is the .gitignore, and when I push, of course, the only change is the .gitignore.

What's going on here?

Update - noticed that I wasn't in the root directory, then went to the root directory and made all the changes to that .gitignore, and this didn't work.

I even tried git add --force on all the .png icons. This didn't do anything either. It didn't even notice.

链接地址: http://www.djcxy.com/p/45170.html

上一篇: .gitignore不会忽略一个特定的文件夹

下一篇: Gitignore结束了