Git and GitHub configuration

getting some version control on your computer
2025-01-01 17:55 // updated 2025-03-16 22:36

We should take note that

  • Git refers to a version control system that tracks changes (called "diffs", short for "differences") to our digital projects (called "repositories")
    • these repositories don't have to include code - they can include just plain text!
    • similar systems include Subversion, Mercurial, etc.
  • GitHub refers to a platform that hosts Git repositories host
    • similar platforms include Bitbucket, OneDev, Codeberg, etc.

Initial installation

  • Follow the steps in git-scm.com to install Git on your computer

User setup

Now that we have Git installed on the computer, we can "sign in" to GitHub:

Username

When you make a commit, what would you want to show as your name?

  • Open your Terminal
  • Configure your GitHub account globally on your machine (remove --global if you wish to configure your account just for the current repository):
$ git config --global user.name "username"

Let's confirm we have set this up correctly:

$ git config --global user.name
> username

E-mail address

When you make a commit, what would you want to show as your e-mail address?

  • Open Terminal
  • As in the above with a username:
$ git config --global user.email "example@email.com"

Confirm:

$ git config --global user.email
> example@email.com

Repository (repo) setup

To create a repository (repo) for the current working folder (assuming you have created and entered into it already):

$ git init

Remote repo setup

To connect the (already-created) remote version of our local repo:

$ git remote add [remotename] [repoURL]

Replace:

Removing the remote repository

For whatever reason, we can also delete the remote with this command from the local working folder:

$ git remote remove [remotename]
⬅️ older (in toolshed)
⚛️ Deploying React apps to GitHub pages
newer (in toolshed) ➡️
Git command aliasing 🐙
⬅️ older (in code)
⚛️ Deploying React apps to GitHub pages
newer (in code) ➡️
JavaScript objects (with and without valueOf) 🧑🏻‍💻
⬅️ older (posts)
📲 Alternatives to YouTube
newer (posts) ➡️
Social media links on websites 📲