“Gitting” started

Kasper Møberg Rasmussen
2 min readMar 16, 2021
  1. Download and install Unity
  2. Create a GitHub account (https://github.com/)
  3. Download and install Git (https://git-scm.com/) (don’t worry about the customization options, leave them as default)
  4. Open Git Bash

Navigating your file system in a command line interface like Git can be intimidating at first, but can quickly become routine.
To move to a different folder, use the cd command, short for change directory. But, like programming functions, the cd command can take arguments.
cd
— Takes you back to the root folder.
cd folder name
— Takes you to the folder with the given name, assuming it exists.
(Tip: writing part of the folder name and hitting tab will autocomplete the folder name.)
cd -
— Takes you back to the previous folder.
cd ..
— Takes you up one folder.

Alternatively you can right click in the normal folder you want to start Git in, and select “Git bash here”.

Connecting Unity and GitHub

1. Create a new repository.

2. Give it whatever name you like, and set the gitignore template to Unity.

3. Copy the marked URL

4. Create a new Unity project and navigate to it in Git Bash.

5. Navigate to the project folder as shown earlier.

6. Run the commands:
git init
— This will initialize the git repository in the selected folder.
git remote add origin YourURL
— This connects your git repository to the project

To verify the connection, you can use the command
git remove -v, which should then respond with something similar to this.

And that’s it!

Your unity project is now connected to the GitHub repository.

--

--

Kasper Møberg Rasmussen

Masters graduate of Learning and experience technology from University of southern Denmark, with a passion for the future of interaction.