Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
0
Members

how version control ur project with git

A topic by appooti created Sep 04, 2016 Views: 572 Replies: 2
Viewing posts 1 to 3
(1 edit)

is there a way to add you game to a git repo and share it. for distributed development

(3 edits)

Sure.

1) Go to your project folder (%AppData%/Superpowers/projects/ on Windows, see this page)

2) Add your existing git repository as a remote, commit and push

git init
git remote add origin <repourl>
git add .
git commit -m 'Initial commit'
git push -u origin master

This page has some information on superpowers and source control integration.

If you use Windows, you're probably going to need Git for Windows or the Github app. If you're new to git, github has some nice tutorials.

make sure you add

rooms

trashedAssets

to your .gitignore as they are not needed for sharing your project.