GitHub Tutorial for Stat 220

This tutorial guides you through creating and cloning a GitHub repository, emphasizing the integration of Git with Posit and addressing credential management across different operating systems.

Initial Setup in Posit

# Load necessary libraries for GitHub Personal Access Token (PAT) management
library(credentials)  # For PAT access
library(gitcreds)
library(usethis)

Establishing Git Credentials / PAT

  1. Configure Git with Your Information: Replace “Your Name” and “youremail@example.com” with your details.
usethis::use_git_config(user.name = "Your Name", user.email = "youremail@example.com")
  1. Create GitHub Token: Follow prompts to create and configure a GitHub token for authentication.
usethis::create_github_token()
  1. Set Git Credentials: For subsequent uses, start here to set credentials.
gitcreds::gitcreds_set()
  1. Verify Credentials:
gitcreds::gitcreds_get()

Credential Caching on Linux

For Linux users, to avoid frequent re-authentication, configure Git to cache credentials:

git config --global credential.helper 'cache --timeout=10000000'

This sets the cache timeout to approximately 16 weeks, suitable for a quarter.

In this tutorial, you will also practice creating a GitHub repository using the usethis::use_github() function and cloning it back to your local machine using Posit’s menu options.

Tutorial 1: Creating and cloning a Repository starting from Github to Posit

  1. Visit the GitHub website at https://github.com and sign in using your GitHub account. If you don’t have an account yet, you can create one for free.

  2. Once logged in, click on the “+” icon in the top right corner of the webpage, then click on “New repository”.

  3. Enter a name for your new repository in the “Repository name” field. You may also provide an optional description.

  4. Choose the visibility of your repository by selecting either “Public” or “Private”. Public repositories are visible to anyone, while private repositories are only visible to you and any collaborators you invite.

  5. (Optional) Check the box to initialize the repository with a README file.

  6. Click on the “Create repository” button to create your new repository.

This will create a new GitHub repository on your Github account. Follow further to clone the repository to your local folder using Posit.

  1. Go to your GitHub repository webpage and click on the green “Code” button. This will display a dropdown menu with a URL for your repository. Click on the clipboard icon to copy the URL to your clipboard.

  2. Open Posit, and from the “File” menu, select “New Project”.

  3. In the “New Project” dialog, choose “Version Control”.

  4. Select “Git” as the version control system.

  5. In the “Repository URL” field, paste the URL that you copied from your GitHub repository webpage.

  6. Choose a local directory where you want to clone the repository by clicking on the “Browse” button and navigating to the desired folder on your computer.

  7. Click on “Create Project” to clone the GitHub repository to your local computer.

Tutorial 2: Creating a new GitHub repository using usethis R package (Posit to Github) (Works ONLY on local Posit)

Prerequisites

  1. Install the usethis package if you haven’t already: install.packages(“usethis”)

  2. Make sure you have a GitHub account, and you are logged in.

  3. Configure Git with your name and email address if you haven’t already. Run the following commands in the R console, replacing “Your Name” and “youremail@example.com” with your information:

usethis::use_git_config(user.name = "Your Name", user.email = "youremail@example.com")
  1. Create a new R project in Posit by clicking on “File” > “New Project” > “New Directory” > “New Project.” Give your project a name and choose a location on your computer to save it. Click “Create Project.”

  2. Make a new file or copy and paste a .qmd file that you want to have in your repo and save it to your requirement.

  1. In the R console, load the usethis package:
library(usethis)
  1. Initialize a Git repository for your project by running:
usethis::use_git()
  1. Now, let’s create a new GitHub repository using the usethis::use_github() function. Run the following command:
usethis::use_github()
  1. Follow the instructions in the R console, and your GitHub repository will be created. Note the repository URL, as you will need it in your further activities