A game made by Rift-Wolves, a group of MoonRift Entertainment interns.
-
Clone this repo on your local machine. -
git clone https://github.com/NathanScheele/SoulsOfTheHexedMoon.git
-
Unity
- Download Unity Hub.
- Create Account?(I already have one, so I'm not sure if this is necessary).
- Install Unity v2020.1.12f1 in Unity Hub.
-
Code editor of your choice (VSCode is my personal go-to. Download Link --> VSCode)
My quick explanation. Check out GitHub Documentation for more detailed information.
git add <directory/file path>
: marks changed file(s) on your local machine as ready to be commited. Use this before you commit.- I usually use
git add .
, which marks all changes. Only use this if you're ready to commit everything.
- I usually use
git commit -m "<commit message here>"
: commits all added changes to your local repo. If you commit something by mistake, don't worry, there are ways to go about reverting and resetting commits.- If you don't want to include the message on the command line, I believe you can configure git to open a text editor, where you can type the message.
git branch <new branch name>
: Creates a new branch with the specified name.- Branching is super helpful for maintaining clean version control and allowing multiple people to work on different parts of a project without deleting eachother's code.
git checkout <branch name>
: switches to the named branch.- Make sure to commit/discard any changes before switching.
git merge <branch name>
: merges the named branch with the current branch.- Watch out for merge conflicts! They're avoidable in some cases, but happen anyways. Not the end of the world 😉