Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Upload source code

A topic by SergioRZMasson created Sep 09, 2020 Views: 231 Replies: 4
Viewing posts 1 to 5
Submitted

In my project I have uploaded only the exe file and have provided a link to the Github page for the source code.  However, I now realize that I intend to keep working on it after them jam has finished. Can I upload the source code for the version that was submitted so I can keep working on the Github version? Or should I just create a branch with the version that was developed during the jam? My concern is that people go to the Github page and find a more advanced project than the one developed during the jam. 

Submitted

Another option would be to tag the last jam commit then link to that tagged version on your project page.

Submitted (2 edits)

I have just done this on my own repo, if you wanted to see how it looks:

You can do this with git tag -a jam -m "some comment about the tag goes here"

Submitted

A tag as suggested by backwardspy, and/or a branch to continue development. (I went with a tag for my repo.)

Submitted

Nice! I will create a tag than! Thank you very much for the help guys!