Git Workflow & Environment Setup
Git Workflow Tutorial⌗
Hey! Thanks for wanting to help out with tech. This document will outline our general workflow, and help you get set up to contribute to our projects.
Sadly, this document also must go over environment setup, which is the worst part of any coding project! Generally, we try to make things as easy as possible through tools like GNU Make and Docker.
Windows-Specific Instructions⌗
These tools work out of the box on MacOS/Linux, but require a good amount of configuration on Windows. For this reason, I’m going to assume you’re using WSL, or Windows Subsystem for Linux. This is a fantastic tool, and it makes setting up standardized development environments significantly easier.
To get set up with WSL, follow this Installation tutorial. If you’re not familiar with Bash, run through this (very quick) Bash tutorial.
Docker is another tool tool that we’re going to use to emulate both production and dev environments. Sadly, Docker requires a Windows pro license to access the hypervisor, but WashU gives every student a free Windows for Education key, which has the same features as Pro! You can get your license key from OnTheHub, and follow these steps to change your product key.
Note: You don’t have to necessarily upgrade Windows yet! We’ll mention later in the tutorial when you need to launch a Docker container. There also should also be an option to run each project locally if you don’t want to upgrade Windows or can’t get a key.
MacOS-Specific Instructions⌗
Nothing much here! This tutorial is going to assume you have homebrew set up. If you’d like a fancier terminal, check out iTerm2, or Warp if you want to get really crazy.
The Meat & Potatoes⌗
Time to set up git! If you don’t have it installed, here’s their install page. If you’re on Windows, follow the Linux instructions while in your WSL terminal. If you’re on MacOS, just run git
in terminal and it should prompt you to install xcode developer tools. You should also go ahead an install Visual Studio Code (Even if you’re using WSL, make sure to still install the Windows version – see here to get set up).
I would also highly recommend both the Github CLI and the Github Desktop app. If you’re new to git, these make contributing significantly easier. (Linux CLI install docs can be found here)
Note: When setting up the Github CLI, you’ll be asked when you run
gh auth login
to select your preferred option of SSH or HTTPS. Make sure to choose SSH. You’ll also be asked whether or not you want to create a public key and add it to your Github account. If you have no idea what this means, select Yes. Make sure not to include a passphrase.If you have an existing public key, it’s up to you whether or not you want to create a new one specifically for your Github account.
Forking, Cloning, and Editing!⌗
Time to clone the repository! Run gh repo fork hack-washu/git-tutorial
. This creates a copy of the repository in your Github account. You can also do this manually by clicking the fork button at the top right of the repo on Github.
You can’t clone & push to the original repository without being a member of the Hack-WashU github repository. We’ll add you later, this is just to get started.
After cloning, cd
into the repository and run code .
. This should open up a VSCode window with the repository! You should be able to see everything in the repository in the side window. You can open a terminal in VSCode by pressing CMD/CTRL + ~
.
Your First Commit⌗
In the repository you just cloned, see what happens when you run make
. You should get an output of all of the scripts in the Makefile. If you don’t, you may need to install make on your system.
At this point, you need to install Node.JS. If you’re on Mac, do so with brew install node
.
If you’re using WSL/Linux, the version bundled with apt is out of date. Follow this guide to install Node through the node version manager, and install the LTS version.
Now try running make install
or make run
in your VSCode terminal. If you don’t get any errors, run make start
. A web browser should open with the Hack WashU logo! Keep this window open.
Look through the files in the react-app directory. Follow these directions:
- Add your name to the file! Wrap it in a
<p>
tag and an<a>
tag, adding a link to your Github profile. - Give your name (and only your name) some swanky custom styling. Here’s a reference.
- Save your changes, and verify they were hot-reloaded in your browser!
- In your terminal run
git add <file path edited file 1> <file path edited file 2>
. This tells git which files you want to commit/change to what you have on your local machine.- You can use
git add *
to add every file in your current working directory, except for paths specified in a .gitignore file!
- You can use
- Click the source tree button on the left bar of VSCode, type a fun message into the box, and click “Commit”.
- Click “Sync Changes”!
You just pushed your changes to your repository! This should be similar to what you’ve done in all of the WashU CS classes.
Note: The above git gui instructions are the same as
git commit -am "<fun message>"
andgit push origin main
.
Your First PR⌗
You should now have your name on the home page of your fork! Time to merge your changes with the main repository.
Go to the base repository.
Click on the Pull Requests tab, and then “New pull request”
If necessary, click “Compare across forks” in the text above the target bar. Make sure it looks something like the following:
base repository: Hack-WashU/git-tutorial base: main <- head repository: <your name>/git-tutorial base: main
Click “Create pull request”
Fill in any information requested by the pull request template
Click “Create pull request”!
Assuming you have no merge conflicts, click the big green Merge button!