Greetings! The jam has started!
GLHF!
Remember to create a git repository! At least locally! If you don’t have git, you can download it here: https://git-scm.com/downloads
After you create you bare project in your game engine of choice you can create a local repository via this commands:
git init
git add .
git commit -m "first commit"
git branch -M main
If you already have a git repo. Here’s how to push it. But this is not necessary at start. You can do it in the very end. Just note that if something happens with your device - you may loose your code. If you pushed to github - it still will be there :)
git remote add origin git@github.com:Dinozor/core-mechanics-jam.git
git push -u origin main
And after that, when you complete another step, you can commit and push again.
git add .
git commit -m "Add new player texture"
git push
Also you can join discord channel: https://discord.gg/F25RK4jG
Please tell me if there is something not working or you need more. I’m still figuring this stuff out!