Git Reference
May 29, 2020 (Updated: March 24, 2024)Git is an incredibly useful tool, but does come with a moderate learning curve. I don’t use it frequently enough to learn it well so I often find myself searching for the same few commands. This page serves mostly as a personal reference, but will hopefully be of use to others as well. If you’re really new to Git, I recommend reading through What is Git.
It will be updated as I find new things to add.
Commands
Cloning a Repository
$ git clone [URL]
Likely the first command for many git users. Simply creates a local copy of a remote repository.
Updating Local Repository from Remote
$ git pull
Undo Changes to a Specific File
$ git checkout -- path/to/file.txt
When using git checkout
it will try to match to an existing branch, or a file path. Changing branches will update the index, and working directory to the specified branch which is the most common use.
Specifying a file path will get the file from the index. This will be from the last time you have run a git add
or git commit
on that file, whichever was most recent. If the repository was just cloned, it will be the version you initially downloaded.
Adding a New Remote
$ git remote add upstream https://github.com/example/example.git
A “remote” is a copy of a repository, usually accessible from the internet or local network location. After cloning a repository, an “origin” remote is added, with the original URL that was pulled from. In some cases it may be useful to add an additional remote. For instance when you are working on a fork of a project. Adding the original project as a remote allows you to merge in changes from the main project to your fork.
View Remotes
$ git remote -v
Show Configuration Information
$ git config -l
If you found this content interesting, or have some constructive criticism please send a message using the form!