paint-brush
A Git Workflow Guide for Code Newbiesโ€‚by@dolamu-asipa
437 reads
437 reads

A Git Workflow Guide for Code Newbies

by Dolamu AsipaSeptember 2nd, 2021
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

Last month, I read up on the [Git version control system]. I actually found it difficult to understand initially, but after reading several articles on Git, watching *a lot* of YouTube videos, and completing my lesson on [The Odin Project] I think I have a clear idea now. Here is a summary of the Git commands I learned, as a cheat sheet for future use by me - and any other fellow Git-beginners out there. To create a file in a git repository just use touch like you would when creating a new file on the command line.
featured image - A Git Workflow Guide for Code Newbies
Dolamu Asipa HackerNoon profile picture

Last month, I read up on the Git version control system. I actually found it difficult to understand initially, but after reading several articles on Git, watching a lot of YouTube videos, and completing my lesson on The Odin Project, I think I have a clear idea now. Here is a summary of the git commands I learned, as a cheat sheet for future use by me - and any other fellow Git-beginners out there. But before we dive into all that, let's address this obvious question;

What Exactly is Git?

Git is a free and open-source distributed version control system.


Version control systems (also known as revision control, source control, or source code management) are used to manage changes to computer programs, documents, large websites, and other collections of information. These systems provide an automatic way to track changes in projects thereby giving creators the power to view previous versions of files and directories, securely back up the project and its history, and collaborate easily and conveniently with others. They are crucial for tracking edits made by others, correcting errors, and protecting against spam and vandalism. Distributed version control (also known as distributed revision control) is a form of version control in which the complete codebase, including its full history, is mirrored on every developer's computer.


Git is accessed via a command-line program called git which lets users transform an ordinary directory into a repository (a sort of enhanced directory with the additional ability to track changes to every file and sub-directory). Here are some basic commands frequently used when running Git ๐Ÿ‘‡


Git Cheatsheet

All Git commands consist of the command-line program git followed by the name of the command, so for the full command ...


  • to check the version of git installed on your system, type ๐Ÿ‘‰ git --version.


  • to set your global configuration settings (i.e. your git name and username), type ๐Ÿ‘‰ git config --global user.name <yourname> and git config --global user.email <email address>. To configure your local default git branch name to main (rather than master which has always been used), type ๐Ÿ‘‰ git config --global init.defaultBranch main. To check all your git configuration values, type ๐Ÿ‘‰ git config --list.


  • to initialize a git repository, type ๐Ÿ‘‰ git init. This creates a special hidden directory called .git where git stores the information it needs to track your projectโ€™s changes. (Itโ€™s the presence of a properly configured .git directory that distinguishes a git repository from a regular directory.)


  • to clone a remote repository on your computer, type ๐Ÿ‘‰ git clone <URL where the repository is>. To create a file in a git repository just use touch like you would when creating a new file on the command line. To check if you've successfully connected your remote repository to your local machine, navigate to the cloned repository and confirm its URL by typing ๐Ÿ‘‰ git remote -v. To change the URL of your git remote origin, type ๐Ÿ‘‰ git remote set-url origin <newurl>


  • to hide files in your repository that you don't want others to see, create a git ignore file using touch, type ๐Ÿ‘‰ touch .gitignore and manually include the names of those files (or file patterns/extensions) you want ignored to the .gitignore text file.


  • to check the status of your repository, use ๐Ÿ‘‰ git status. This enables you to see all changes to files within the respository, displayed to show; files that are merely in your working directory (these are termed 'untracked files'), files that have been edited but not yet (re)staged for commit and files in the staging area (with changes about to be committed to the repository).


  • to make a commit in git: first add the file (or files) you want to commit to the staging area, type ๐Ÿ‘‰ git add <filename> to add a single file or git add . to add all unstaged files in the current directory and git add -A to add all untracked files and directories in the repository. Then type ๐Ÿ‘‰ git commit -m <a message describing what you have done to make this snapshot different> to commit your changes.


  • to remove a single file from the staging area, type ๐Ÿ‘‰ git reset <filename> or git restore --staged <filename> or git rm --cached <filename>. To remove all files, simply type ๐Ÿ‘‰ git reset. To check the difference between the last commit and unstaged changes in your current project, type ๐Ÿ‘‰ git diff.


  • to upload/push your work to a remote repository, type ๐Ÿ‘‰ git push origin main. To see the history of your commits, type ๐Ÿ‘‰ git log. This command shows only the commits messages which isn't particularyly detailed. To see the full diffs representated by each commit, use the -p flag, type ๐Ÿ‘‰ git commit -p


  • to commit all changes in your currently existing files, pass the -a flag to the git commit command by typing ๐Ÿ‘‰ git commit -am <message>. The -a flag commits all pending changes to files in the repository. Always remember to type ๐Ÿ‘‰ git add -A when there are new files.


  • to see the difference between staged changes and the previous version of the repo, type ๐Ÿ‘‰ git diff --staged.


  • to correct an error in /update your last commit message, type ๐Ÿ‘‰ git commit --amend. To ascertain that your git commit message was properly updated, run git log to get the SHA of your last commit then view the diff using ๐Ÿ‘‰ git show <SHA>.

Additional Resources


  1. Learn Enough Git to be Dangerous.


  2. Corey Schafer's Git Tutorial for Beginners on Youtube.


  3. Fireship's Youtube video on Git It? How to use Git and Github


Hey, thanks for reading! ๐Ÿ‘‹ ๐Ÿ‘‹