-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git status contains zillions changes #8
Comments
Using find game/*/ -name "*.import" -exec git checkout -- {} \; left
and untracked Untracked files:
(use "git add <file>..." to include in what will be committed)
game/.godot/
game/assets/WoodBamboo.jpg.import
game/assets/circle_05.png.import
game/assets/driver/racedriver2_Material.png
game/assets/driver/racedriver2_Material.png.import
game/assets/driver/racedriver2_Material_1.png
game/assets/driver/racedriver2_Material_1.png.import
game/assets/driver/racedriver2_Material_2.png
game/assets/driver/racedriver2_Material_2.png.import |
Cleanup .tres
From the remaining untracked I guess racedriver2_ is from v3.x git clean -fd game/assets/
git reset origin --hard |
I go back to my own project(s) for a week or two. CY |
I was never sure whether to put *.import in Git or not. Looks like I missed some, I will have to fix this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like lots of files are reimported. Do you have similar
git status
results? I thought we could ignore all .import but #7 ignore example shows none.The text was updated successfully, but these errors were encountered: