Uploading from github

I put by game into github as a repository and im trying to import it into godot on a different computer. How do I do this.

Did you put your Godot project files, or an exported executable game on GitHub? I will assume it’s the project files, otherwise let me know.
Do you use git CLI or GitHub Desktop? I will assume git CLI.

In general, you need to clone your repo into a folder on this other computer, by running this command in Terminal in the folder of your choice:

git clone https://github.com/your_username/your_project.git

And then Import this project into your Godot.

If you use GitHub Desktop - here’s the article.

2 Likes

I cloned it through git desktop instead of command but it worked perfectly. Thanks a lot.

2 Likes