schmjdt / gms_tutorial_farming

GameMaker Studio 2 Farming RPG Tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GameMaker Studio 2 Farming RPG Tutorial

Following along with Farming RPG Tutorial: GMS2 by FriendlyCosmonaut

Workflow >>>

*start new tutorial video*
*create branch locally*
git checkout -b ep#
*push branch to repo*
git push --set-upstream origin ep# 

*make changes in GameMaker Studio*
Source Control -> Commit Changes -> Stage All/Wanted -> Add Commit Message -> Commit
*back on command line*
git push
*repeat above as many times as needed*

*tutorial video complete - create temporary branch to squash before merging to master*
git checkout -b tmp
git rebase -i master
	pick	(earliest commit)
	squash
	...
	squash	(latest commit)
>wq
	*Remove all commit messages and put*
    "Complete ep# of tutorial"
>wq
*switch to master and merge*
git checkout master
git merge tmp
git branch -d tmp
git push

About

GameMaker Studio 2 Farming RPG Tutorial


Languages

Language:Game Maker Language 100.0%