Git and GitHub: A Quick Start Guide

Ishan BerryIshan Berry
8 min read

Introduction

What is Git?

Git is an open-source version control system. It allows developers to track changes, save different versions of their code, and collaborate with others without losing any work.

With Git, you can:

  • Track every change made to your project.

  • Restore previous versions if something goes wrong.

  • Work on new features without affecting the main project through branching.

What is GitHub?

GitHub is a platform that hosts Git repositories in the cloud. While Git operates locally, GitHub allows you to:

  • Share code and collaborate with others.

  • Create issues to track tasks and bugs.

  • Use pull requests to propose changes to projects.

  • Discover and contribute to open-source projects.

Git vs. GitHub: Key Differences

GitGitHub
A local tool for version controlA cloud platform for hosting Git repos
Manages code and history locallyEnables collaboration over the internet
Commands used in the terminalProvides a web interface and UI tools

All Commands For Git

Configuring git for the first time:-

$ git config --global user.name “<Enter Your username here >“

$ git config --global user.email ”<Enter Your Email here >”

General Git Features:-

Initializing Git:-

$ git init

Git now knows that it should watch the folder you initiated it on. Git creates a hidden folder to keep track of changes.

Staging files/Adding files to Git repo:-

Staged files are files that are ready to be committed to the repository you are working on.

When you first add files to an empty repository, they are all untracked. To get Git to track them, you need to stage them or add them to the staging environment.

$ git add <filename with extension>

Staging all files in a folder:-

$ git add --all

or

$ git add -A

Making a Commit:-

Adding commits keep track of our progress and changes as we work. Git considers each commit change point or "save point". It is a point in the project you can go back to if you find a bug, or want to make a change. When we commit, we should always include a message.

$ git commit -m “<Enter Your message>”

Git Commit without Stage:-

Sometimes, when you make small changes, using the staging environment seems like a waste of time. It is possible to commit changes directly, skipping the staging environment.

$ git commit -a -m “<Enter Your message>”

Status of files and log:-

$ git status

File status in a more compact way:-

$ git status --short

Log of a file:-

The log is used to view the history of commits for a repo.

$ git log

$ git log --oneline

If you are having trouble remembering commands or options for commands, you can use Git help.

See all the available options for the specific command -

git <command > -help

See all possible commands -

$ git help --all

If you find yourself stuck in the list view, SHIFT + G to jump the end of the list, then q to exit the view.

Git Branching:-

In Git, a branch is a new/separate version of the main repository. Branches allow you to work on different parts of a project without impacting the main branch. When the work is complete, a branch can be merged with the main project. We can even switch between branches and work on different projects without them interfering with each other.

Making a new Git Branch:-

$ git branch <name of branch >

Checking all available Branches:-

$ git branch

Switching to other Branches:-

$ git checkout <branch name >

Making a new branch and directly switching to it:-

$ git checkout -b <branch name >

Deleting a Branch:-

$ git branch -d <branch name >

Merging two Branches:-

It’s preferred to change/switch to the master branch before any branch needs to be merged with it.

$ git merge <branch name >

This will merge the specified branch with our master branch

Working with GitHub :-

Create a GitHub account to create your remote repositories. Now, create a new repo where we will be uploading our files from the local repo.

Eg of an Image form Google has taken For a Beginner

Note - Local repository (repo.) means the repo. which is on our system whereas, remote repo. means the one which is on other remote system/server, for eg. - GitHub, GitLab, Bitbucket, etc.

Push local repo to GitHub:-

Copy the URL or the link to the repo that we just created. As an example, it should look like this -

https://github.com/ishanberry/portfolio.git

Paste the copied URL in the below git command.

$ git remote add origin <paste the copied URL here >

git remote add origin <URL>’ specifies that we are adding a remote repository, with the specified URL, as an origin to our local Git repo. Finally, pushing our master branch to the origin URL (remote repo) and set it as the default remote branch.

$ git push --set-upstream origin master

Go back into GitHub and see that the repository has been updated.

Pushing local repo to GitHub after doing the above process at least once:-

First commit all the changes. Then push all the changes to our remote origin i.e. remote repo on github.

$ git push origin

Pull local repo from GitHub:-

Git pull is used to pull all changes from a remote repository into the branch we are working on. It is a combination of fetch and merge. Use it to update your local Git.

$ git pull origin

Pull branch from GitHub:-

First, check which branches we have and where are we working at the moment by ‘git branch’ command. Since we do not have the new branch on out local Git which is to be pulled from the GitHub. So, to see all local and remote branches, use -

$ git branch -a

For viewing only remote branches:-

$ git branch -r

Now, the new branch is seen in the console but it is not available on our local repo. So, let’s check it out using ‘git checkout ’. Now run ‘git pull’ to pull that branch on our local repo. We can now check the available branches using ‘git branch’.

Push branch to GitHub :-

First, let’s create a new local branch which we will be pushing to Github. Enter the command as ‘git checkout -b <branch name >’. You can check the status of the files in this current branch using ‘git status’. Commit all the uncommitted changes for all the files in this branch using ‘git commit -a -m “<Message>” ’. Now push this branch from our local repo to GitHub using ‘git push origin <branch name > ’.

Git clone from GitHub :-

We can clone a forked repo from Github on our local repo. A clone is a full copy of a repository, including all logging and versions of files. Move back to the original repository, and click the green "Code" button to get the URL to clone. Copy the URL.

Now in the git bash, enter the following command to clone the copied repo onto your local machine -

$ git clone <copied url >

To specify a specific folder to clone to, add the name of the folder after the repository URL, like this -

$ git clone <copied url > <folder name>

Git Undo:-

Git Revert :-

revert’ is the command we use when we want to take a previous commit and add it as a new commit, keeping the log intact. First thing, we need to find the point we want to return to. To do that, we need to go through the log. To avoid the very long log list, use the --oneline option which gives just one line per commit showing –

i. The first seven characters of the commit hash

ii. The commit message

Git Revert HEAD:-

We revert the latest commit using ‘git revert HEAD’ (revert the latest change, and then commit). By adding the option --no-edit, we can skip the commit message editor (getting the default revert message).

$ git revert HEAD --no-edit

Git Revert to any commit :-

To revert to earlier commits, use ‘git revert HEAD~x’ (x being a number. 1 going back one more, 2 going back two more, etc.)

Git Reset:-

reset’ is the command we use when we want to move the repository back to a previous commit, discarding any changes made after that commit. First, get the seven characters of the commit hash from the log for the commit that you want to go back for. Then we reset our repository back to that specific commit using ‘git reset commithash’ (commithash being the first 7 characters of the commit hash we found in the log).

$ git reset <commithash>

Git Undo Reset:-

Even though the commits are no longer showing up in the log, it is not removed from Git. If we know the commit hash, we can reset to it using ‘git reset <commithash>’.

Git Amend:-

commit --amend is used to modify the most recent commit. It combines changes in the staging environment with the latest commit, and creates a new commit. This new commit replaces the latest commit entirely.

One of the simplest things you can do with --amend is to change a commit message.

$ git commit --amend -m “<commit message>”

Using this, the previous commit is replaced with our amended one.

Git Amend Files:-

Adding files with --amend works the same way as above. Just add them to the staging environment before committing.

0
Subscribe to my newsletter

Read articles from Ishan Berry directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Ishan Berry
Ishan Berry