Not sure if this is the right forum to post on or if it should be the Game Maker forums, but might as well find out.
Basically me and my fellow classmates are making a project for Computer Science. We need some sort of versioning software, but Game Maker's built-in source control is crappy, so we made a repository on Bitbucket to combat the problem.
Unfortunately, when I make a change and select the uncommitted changes for pushing to the cloud, it seems not to pick them up. Is this a known problem? Do I need to wait a little while? When I commit things it goes instantly, but if I make changes and commit them, then my friend who was working on the same version has to start over and make the same changes on the new version because they won't merge.
Also, if I need to post this somewhere else, please tell me so I can get an answer from whoever it is faster
Thanks
Community moderators have prevented the ability to post new answers.
You can't push uncommited changes in git. You should both commit and push your changes. Before pushing, you should do a pull, which will merge any changes on the server into your local copy of the repo - and which may require you to resolve conflicts if you're working on the same part of the code. Better yet, you should each work on individual feature branches for each feature you're implementing. Then you can push to your heart's content without worry about merging, and merge only when you're ready to do so. However, you should merge early and often. You might want to read about GitHub Flow as an approach to follow.
Thank you very much, I'll get to it right away!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.