...
Info |
---|
If you are to be working on the Data & Controls team, please use this Google Form to request GitHub Access: https://forms.gle/J718HJVWyPdvwXKL8GitHub Basics |
Setting Up Git
Install Git
Note Git is already installed on macOS
Make sure you install Git Bash along with your installation, and leave everything else default
If you’re already using Linux I bet you know what Git is
For Ubuntu, run
apt-get install git
For Arch Linux, run
pacman -S git
Set up SSH tokens (This presentation might help guide)
First, run
ssh-keygen
in the CLI anywhere, and just leave everything default by pressing enterNavigate to
~/.ssh/
and openid_rsa.pub
in a text editorCopy the ssh key listed in this file into your GitHub’s SSH keys here
If you have multiple machines, you’ll need to do this for each machine (i.e. dual booting or using a VM)
Run these two commands to save your GitHub credentials
Code Block $ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com
View the Git 101 Presentation below if you’re not familiar with Git
Widget Connector | ||
---|---|---|
|
Getting Up to Speed with the NER GitHub
Info |
---|
You might need to get added to it, so either fill out the form at the top of the page or talk to your lead/head about getting access |
...