Basic Git/GitHub Skills Using RStudio
What is Git and GitHub?
Git A program to track your file changes and create a history of those changes. Creates a ‘container’ for a set of files called a repository.
GitHub A website to host these repositories and allow you to sync local copies (on your computer) to the website. Lots of functionality built on top of this.
Some basic Git jargon
- Repo Repository. It is your code and the record of your changes. This record and also the status of your repo is a hidden folder called
.git
. You have a local repo and a remote repo. The remote repo is on GitHub (for in our case) is calledorigin
. The local repo is on the JupyterHub. - Stage Tell Git which changes you want to commit (write to the repo history).
- Commit Write a note about what change the staged files and “commit” that note to the repository record. You are also tagging this state of the repo and you could go back to this state if you wanted.
- Push Push local changes (commits) up to the remote repository on GitHub (
origin
). - Pull Pull changes on GitHub into the local repository on the JupyterHub.
- Git GUIs A graphical interface for Git (which is command line). Today I will use
jupyterlab-git
which we have installed on JupyterHub. - Shell A terminal window where we can issue
git
commands.
Overview
Today I will cover the four basic Git/GitHub skills. The goal for today is to first get you comfortable with the basic skills and terminology. We will use what is called a “trunk-based workflow”.
Simple Trunk-based Workflow:
- Make local (on your computer) changes to code.
- Record what those changes were about and commit to the code change record (history).
- Push those changes to your remote repository (aka origin)
We’ll do this
Setting up Git
You should have gotten this done on Tuesday but if not here are the instructions
Before we can work with Git in the JupyterHub, we need to do some set up.
- Tell Git who you are and to store your credentials (GitHub login info)
Paste this into a terminal window:
git config --global user.email "<your email>"
git config --global user.name "<your name>"
git config --global pull.rebase false
git config --global credential.helper store
- Get a Personal Access Token from GitHub
Copy the token! You will need it in the next step.
Show me Note, one change to this video is that you need to specify that you want a classic token.
- Trigger Git to ask for your password (that personal access token)
You can do this by cloning a private repo. In the Terminal, issue this command
git clone https://github.com/Hackweek-ITCOocean/github_setup_check
It will ask for your GitHub username and password. At the password part, paste in the Personal Access Token.
Git tab
When the instructions say to use or open or click the Git tab,
The Key Skills
Skill 1: Create a blank repo on GitHub
Skill 2: Clone your GitHub repo to RStudio
Skill 3: Make some changes and commit those local changes
Skill 4: Push the changes to GitHub
Skill 1b: Copy someone else’s GitHub repository
Let’s see it done!
Skill 1: Create a blank repo on GitHub
- Click the + in the upper left from YOUR GitHub page.
- Give your repo the name
Test
and make sure it is public. - Click new and check checkbox to add the Readme file and
.gitignore
- Copy the URL of your new repo. It’s in the browser where you normally see a URL.
Skill 2: Clone your repo to the RStudio
In RStudio we do this by making a new project.
- Copy the URL of your repo.
https://www.github.com/yourname/Test
- File > New Project > Version Control > Git
- Past in the URL of your repo from Step 1
- Check that it is being created in your Home directory which will be denoted
~
in the JupyterHub. - Click Create.
Skill 3: Make some changes and commit your changes
This writes a note about what changes you have made. It also marks a ‘point’ in time that you can go back to if you need to.
- Make some changes to the README.md file in the Test repo.
- Click the Git tab, and stage the change(s) by checking the checkboxes next to the files listed.
- Click the Commit button.
- Add a commit comment, click commit.
Skill 4: Push changes to GitHub / Pull changes from GitHub
To push changes you committed in Skill #3
From Git tab, click on the Green up arrow that says Push.
To pull changes on GitHub that are not on your local computer:
Make some changes directly on GitHub (not in RStudio)
From Git tab, click on the down arrow that says Pull.
Pair-activity 1
In RStudio,
- Make a copy of README.md
- Rename it to
.md - Add some text.
- Stage and commit the added file.
- Push to GitHub.
Try before watching.
Show me in RStudio – Show me in the shell – Show me in jupyter-git
Pair-activity 2
All of this activity is in RStudio.
- Clone this repo https://github.com/Hackweek-ITCOocean/git-basics to RStudio and create a new project
- Navigate to the files in your new project, create a filed called to
<yourname>.md
. Use your actual name so the filename is different from everyone elses. - Stage and then commit that new file.
- Push to GitHub.
- Make some more changes and push to GitHub.
- Pull in your partner’s (and everyone elses) changes
Pair-activity 3
You can copy your own or other people’s repos1.
- In a browser, go to the GitHub repository https://github.com/RWorkflow-Workshops/Week5
- Copy its URL.
- Navigate to your GitHub page: click your icon in the upper right and then ‘your repositories’
- Click the
+
in top right and clickimport repository
. Paste in the URL and give your repo a name. - Use Skill #1 to clone your new repo to RStudio and create a new project