Member-only story

Getting started with GIT

Donald Le
9 min readFeb 24, 2020

--

I. Why Git?

  1. Time Saving:

Git is lightning fast. And although we’re talking about only a few seconds per command, it quickly adds up in your work day. Use your time for something more useful than waiting for your version control system to get back to you.

  1. Work offline:

What if you want to work while you’re on the move? With a centralized VCS like Subversion or CVS, you’re stranded if you’re not connected to the central repository. With Git, almost everything is possible simply on your local machine: make a commit, browse your project’s complete history, merge or create branches… Git let’s you decide where and when you want to work.

2. Undo mistake:

People make mistakes. A good thing about Git is that there’s a little “undo” command for almost every situation. Correct your last commit because you forgot to include that small change. Revert a whole commit because that feature isn’t necessary, anymore. And when the going gets tough you can even restore disappeared commits with the Reflog — because, behind the scenes, Git rarely really deletes something. This is peace of mind.

--

--

Donald Le
Donald Le

Written by Donald Le

A passionate automation engineer who strongly believes in “A man can do anything he wants if he puts in the work”.

No responses yet