Godot compatible version: 4.1.2
- Download Godot 4.1.2
- Install VC Redist (needed for Git plugin)
- Install Git for Windows
- Open Git Bash and configure your username and email
$ git config --global user.name "your name"
$ git config --global user.email your@email.com
-
Open the project in godot and go to Project > Version Control > Version Control Settings and put your github credentials there (SSH key not needed)
-
Go to Editor > Manage Export Templates > click Download and Install
-
Configure hooks using
git config --local core.hooksPath .githooks/
-
You're ready to start developing features
- When adding new scenes, scripts or assets, adjust them to fit current structure
- Use signals and build-in nodes and methods as ofter as you can
Please keep up to date