Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 5, 2020 05:20 am GMT

A Perhaps-Too-Simple Guide to Git

For probably my first year writing code, I used Git like I take a multivitamin: I was told I should do it, but I didnt really understand how it works and I only vaguely understood the benefits. Unsurprisingly, I made a ton of Git mistakes. Running git rebase was terrifying. There were many times when I sat down to bang out some code and hours later, I was still going line by line fixing merge conflicts wondering what the hell just happened.

But little by little, I started understanding Git. I even came to appreciate it. It is an amazing piece of technology. Although it is highly sophisticated, it is useful and accessible to even beginner developers. You can find lots of beginner guides out there to using Git. You can find lots of guides that define the key terms. In this post, I want to focus on giving you the intuition you need to confidently use Git.

Why is Git useful?

Git really does just 2 things. It tracks changes to a set of code and it enables people to manage those changes. Based on that core functionality, Git offers 2 primary benefits: time travel and collaboration.

Time travel

Over time, a codebase changes. New features are added. Bugs are fixed. Parts are rewritten (or refactored as developers like to call it). Ideally, all these changes are positive. But sometimes they are not. Lets say you unintentionally introduced a bug into your code and now things are seriously broken. You have 2 options. You could write more code to fix it. Or you could just undo the broken code that you added; you could just go back in time to when your code didnt have that bug. With Git that is as easy as running one command. This isnt a hack. Huge companies use Git to undo changes to products that millions of people use.

Collaboration

Changes happen over time and they also happen between people working on the same codebase. Git enables you to track and manage changes that different people make to the same codebase. If you have even one collaborator on a project, this benefit becomes evident immediately.

What is Git?

I think definitions are important, so lets look at the official definition from the Git homepage:

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

Git is easy to learn and has a tiny footprint with lightning fast performance. It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase with features like cheap local branching, convenient staging areas, and multiple workflows.

Theres clearly lots of advantages to Git. Its free, open source, fast, efficient, small, and it works with any size project -- all great! But there are also some things in that definition that maybe werent so obvious. One of them may have been SCM.

Ill admit, I had to Google it. The first result on Google didnt seem right:

Alt Text

So I tried what does CSM mean and that also did not work:

Alt Text

Finally, I tried what does CSM mean git and got what I was looking for:

Alt Text

No surprises there, hopefully. It should make sense by now that Git is a source code management tool. It turns out that there are other SCMs out there too. Git is actually only 15 years old. SCM tools had existed for decades before Git came along. Apparently they just werent that great. Linus Torvalds decided to make a better one and that became Git. (By the way, Linus also created Linux and maintained it for many years -- what a legend).

Another key term from the definition is distributed version control system. The distributed part in particular is what really sets Git apart. In practice, one of the things it means is that each person working on a codebase keeps a full version on their own computer. A big benefit of this is that it is much faster to work on the code because you dont have to be constantly in sync with a central server. There are a lot more benefits to a distributed version control system, and you can read about them here.

How do you actually use Git?

As I said before, there are tons of guides out there about the commands you need to run to use Git. This one is a good example. Here Im instead going to focus on giving you an intuitive understanding of the concepts so that you can understand when to use those commands and what they are doing.

Core Concept #1: Git is silently monitoring your files.

I think of Git like a courtroom stenographer. It sits there silently in the background just recording all the changes you make to your code. It only speaks up when you ask it for something. You can ask it to show you the changes or you can tell it to do something with those changes.

Core Concept #2: Remote and local repositories

In any Git project there are two versions of the same repository: the remote repo and the local repo. The remote repo lives on some remote server (i.e. the cloud). These days, that remote server is probably GitHub, GitLab, or Bitbucket. Your local repo is a copy of the same code that is in the remote repo, but the local repo is stored on your computer. When youre working with Git, one of the main things youll be doing is keeping the remote repo in sync with your local repo and vice-versa. Ill elaborate. Lets say youre adding a new feature. You will make changes to your local repo. Once youre finished, you will then push these changes to the remote repo. Everyone else on the project can then pull these changes so that their local repo is up to date with the remote repo.

Core Concept #3: The commit

We organize human history by years. The Magna Carta was written in 1215. The US was founded in 1776. You are X number of years old.
We organize a codebases history by commit. This feature was added in commit ABC. That bug was introduced in commit XYZ. The latest stable version is commit JKL.

A commit is a snapshot of the current state of the codebase. When a change is made, there is a new current state of the codebase, and this new current state is captured in a new commit. Thats the cycle, over and over: commit + changes = new commit.
These commits form a timeline of the project. This timeline is called the git history.

Core Concept #4: The branch

At any point in time, any number of things could happen. You could go eat some food. You could call a friend. You could close your laptop. In other words, branching out from this point in time are many possible futures.

The same intuition applies to Git. From any one commit in Git, there are many possible futures. Maybe the background of the new page could have been green instead of blue. Maybe you use TypeScript instead of JavaScript. Each of these possible futures would be contained in a branch.

When youre working with other people, this branching feature becomes especially useful. Lets say you want to add a new feature. You would get the latest version of the codebase. The convention is that the main version of a codebase is stored on a branch named master. So to be more precise, you will get the latest commit on the master branch. You create a new branch off that commit and start implementing your feature. Once youre done, you create a new commit and add that commit to the master branch.

What if while you were working on that feature your boss comes to you and asks you to fix a small bug? You can just create a new branch from the latest master commit, fix the bug, create a new commit, and add it to the master branch. Then you can just go back to the branch you were building the new feature on and pick up where you left off.

The pattern is the same over and over. You create a branch off of the latest commit in the master branch, make changes, create a new commit, and then add that commit to the master branch.

Now that you have the intuition, let me just clarify 2 terms that you will come across a lot. The first is merging. When you add a commit from your branch to the master branch, what actually happens is that your branch is merged into the master branch. Its like two roads merging into one. Your branch becomes the master branch, just like the one road becomes the other road. This analogy is not perfect though because your branch doesnt actually disappear automatically. What is really happening is that the contents of your branch are copied and merged with the contents of the master branch. Your branch and its contents will still exist until you delete them.

The other term is pull request, and it is far less intuitive than merging. If youre working on a codebase with other people, you probably wont be allowed to just add a commit to the master branch, especially if youre working at a company. Instead, you make a request to add your commit. Someone else reviews it, makes sure everything looks good, and then they merge your branch into the master branch and your commit is added.

In GitHub this request is called a pull request. This is weird. You pull changes from the remote repo and push changes to the remote repo. This is how naturally everyone describes it. When you submit a request like this, in your mind, you say I am requesting to push these changes into master. Therefore, I think its more intuitive to call a pull request a push request. But the logic GitHub uses is that you are requesting that your changes be pulled into master. Thats why its called a pull request. GitLab, probably GitHubs main competitor, actually calls these requests merge requests which makes a lot more sense to me.

Core Concept #5: Git can find differences.

This is where Git starts to amaze. Just storing snapshots of the state of the repo isnt that impressive. But Git can determine the differences between 2 snapshots. This is impressive.

Recall that a git history is just a chain of commits. This is useful but this is like knowing just dates on a timeline. For example, World War I started in 1914. Then World War II started in 1939. But how did we go from one world war to another one? Why did a second world war happen just 25 years after the first one ended? To answer these questions, we need to look at how things changed in between those two points in time.

The same intuition applies to the history of your codebase. Git can find the differences between two commits, so it can tell you what changed between one commit and the next. With Git, you can easily see how the codebase changed over time.

This difference-finding functionality has all kinds of uses. When you create a pull request (merge request), Git will determine the differences between your commit and the latest commit on the master branch. GitHub (and the other products) display these differences in a UI. If youre reviewing code, you only have to look at what changed. Another common use is to find bugs. If you know when a bug appeared, you can compare two commits to see the precise code that introduced it.

Core Concept #6: Merge conflicts

If youve had bad experiences with Git, its likely because of merge conflicts. They have caused developers to use more bad words than perhaps anything else. The thing with merge conflicts, however, is that Git has to have them. Even if Git could read your mind, they couldnt be eradicated completely. This will make sense shortly.

Imagine youve been working on a new feature in a branch called: new-buttons. Yesterday, your collaborator added a new commit to the master branch. Before you keep working on your feature, you want to make sure that you are working with the latest version of the code. To do this, you have to do the following: You pull the latest commit from the master branch on the remote repo. Now your local version of master is up-to-date with the remote one. Now you need to merge this up-to-date version of master into the new-buttons branch youve been working on. Lets pause for a moment. These steps may be unfamiliar but if youve read this far, you should have the intuition to understand them. If they dont make sense yet, reread the paragraph, think about it some more, and if youre still not getting it, just ask in the comments and Ill be happy to help :-)

You merge the master branch into your new-buttons branch and there are merge conflicts. Why? You touched the same code that your colleagues touched in their commits. Lets get some intuition for why this is a problem. Remember that branches are like alternate futures branching out from one point in time. In one of those alternate futures, you have short hair on November 23, 2030. In another one, you have long hair on that date. But in any one future / branch, you cant have both. If you tried to combine those two possible futures, if you tried to merge those two branches, you would have to pick: Will you have short or long hair?

When there is a merge conflict Git is telling you, You need to pick. Lets say both you and your collaborator changed the background color of the app. When you try to merge their changes into your branch, Git will raise a merge conflict and ask you to resolve it by picking either your version or your collaborators version of the conflicting code. Git doesnt know which one you want to use. Maybe you dont even know! Maybe you need to call a meeting and make a decision with your collaborator. Thanks to Git, you know that you and your collaborator have incompatible versions of the future and that you need to fix this.

Merge conflicts can be avoided by making sure that no two developers touch the same piece of code. Because merge conflicts are so annoying, and can require a lot of work to resolve, developers go to great lengths to stay organized and coordinate work between one another in order to avoid them. However, in practice merge conflicts are nearly impossible to avoid if there is more than one person working on a project. Thankfully Git not only clearly flags the conflicts, but it also makes it easy to pick the versions of the code you want to use in order to resolve them.

Conclusion

I hope you now have some good intuition about Git that will help you have a better experience working with it. From here, I would suggest jumping into particular commands and workflows in Git. You could start with this great article that goes in-depth on the main parts. I would encourage you to think about what each command and series of commands is actually doing so that you can continue building your intuition.

Good luck and happy coding!

If you like this post, we'd love it if you "Like" it and/or share it wherever and however you do your social media. You can subscribe here to get an email when we publish new posts. I'm on Twitter at @o_nagen. If you have any questions, feel free to reach out at [email protected].

If you're curious what Antcode is, you can check it out here.

-Otto

Cover photo credit: Caleb Jones on Unsplash


Original Link: https://dev.to/o_nagen11/a-perhaps-too-simple-guide-to-git-1052

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To