We wouldn't get very far without installing and setting up Git. Version control of our code is vital to keeping track of changes. Here is a quick guide on how to get up and running with Git.
Now you can make commits on your changes and have them tied to your name and email (this is required to commit with Git)
We can now move on....
# Get a Copy of This Project
In order to work on this project, you will need a local copy of it. This can be done using git directly, but GO offers the ability to "go get" the project for us. This will be placed in ```/home/$USER/go/src``` along with the proper domain it was pulled from (i.e gitbutter.pw), the owner (i.e Zolfite) and the name of the project.
The full path looks like: ```/home/$USER/go/src/gitbutter.pw/zolfite/project-rpg```
The command to do all of this is as follows:
```
go get gitbutter.pw/zolfite/project-rpg
```
Next we go over setting up Visual studio code. You can use VSCode to open our project folder ```project-rpg``` specified in the path above.
Visual Studio Code or (VSCode) is an open source code suite developed by Microsoft Corporation under the MIT license. It is available for Windows, MacOS and Linux.
To get VSCode for Ubuntu 16.04, we simply have to download and install the .deb file.
* Open your Web Browser and go to: https://code.visualstudio.com/
* Click the green box in the middle of the screen that says ".deb"
If you are using Firefox, make sure to check the button "Save File"
If you are using Google Chrome, the file should download to your Downloads folder.
Next I recommend getting the "Gdebi Package Installer" since it is the most straight forward way to install a deb package.
```
sudo apt install gdebi-gtk
```
Then open your file manager and go to your downloads folder and: