Working in the same project?

C

Calbacelli

Guest
Hi there, I'm tryingo to make a game with GM2, and I want to know if there is any way to work with my coworker in the same project in two diferent computers?

Or else, to put parts of different projects and merge them as one?

Thanks for the support, guys! :)
 

Yal

šŸ§ *penguin noises*
GMC Elder
I'd recommend Git, a source control program invented by the guy that made Linux. GM has built-in support for it, but the command-line version lets you do more powerful stuff.

Basic flow is:
  • guy 1 does
    • git add -A
    • git commit -m "added new stuff"
    • git push
  • guy 2 does
    • git fetch
    • git pull
(this won't work until after you've added a remote repo, which is a cloud copy of the repository that both of you can push stuff to / pull changes from - bitbucket and github are the two leading providers on the market)
 
These videos helped me understand Source Control in GMS2. They also helped me understand the difference between Git and GitHub, taught me two popular options for using Git (GitHub and BitBucket) and two different ways to integrate them into a GMS2 project (through the GUI and through a command line.)

Using Source Control the Bad Way



Using Source Control the Good Way

 
Top