I have a new Project with a few actors. Some function as expected when commited to github, some don´t.
How does your gitignore file look like?
You need to be more specific with the information you provide too. It could be anything, and unless you give as much info as you possibly can, it can be a guessing game.
(post deleted by author)
Yea i didn´t fix the issue.
when i make a new actor it gets commited. But my existing actors don´t.
My Git Ignore:
Binaries
DerivedDataCache
Intermediate
Saved
.vscode
.vs
*.VC.db
*.opensdf
*.opendb
*.sdf
*.sln
*.suo
*.xcodeproj
*.xcworkspace
I think they just got skipped because they existed before you added source control to your project. In this case you would need to manually add these.
Go to your git bash or command promp if you don’t have bash
Navigate to your project folder and run these:
git status
This will show untracked files (the actors that aren’t committed yet).
Untracked files:
Content/Blueprints/BP_SpaceShip.uasset
Content/Blueprints/BP_Planet.uasset
Content/Blueprints/BP_OldActor.uasset
git add Content/Blueprints/BP_SpaceShip.uasset
git commit -m "Added spaceship actor only"
git push