DEV Community

Fran Iglesias
Fran Iglesias

Posted on • Originally published at franiglesias.github.io on

Some key concepts on Git

Some key concepts explained to know what's happening when you work with this VCS.

Repository

The place where you store your work. At first, it's a folder on your computer. When you add version control, the folder becomes a repository and can keep track of the changes you make.

You create a local repository by moving to it and telling git to init.

mkdir myProject
cd myProject

git init
Enter fullscreen mode Exit fullscreen mode

More on this later.

Changes

Changes are modifications to the contents of the repository. These can be of three types:

  • Addition of files
  • Deletion of files
  • Modification of files

Empty folders doesn't count until they get some files (or loss all of them).

But changes by themselves are not enough. You need to tell git to put an eye on them, tracking the files. You can do that doing:

git add <replace this with the files changed>
Enter fullscreen mode Exit fullscreen mode

This will stage the changes.

Here are some examples:

git add readme.md // Will add the readme.md file

git add src/MyClass  // Will add all changes under folder src/MyClass

git add -all // Will add all the changes detected
git add . // Will add all the changes detected
Enter fullscreen mode Exit fullscreen mode

Whenever a file changes, it will be considered changed, but it's no until you stage the change that it will be taken into account in order to "remember" it.

In fact, if you continue modifying a concrete file after it is added, the new content won't be part of the next commit, you must add them again to register the new changes.

So, changes are provisional, to say something. To fix a point in the story you must commit the changes you've made.

Commit

A commit is a way to register a set of changes in the versioning system. It can have from one change to dozens affecting several files. A commit makes permanent those changes.

A commit, then, is a point in the story of a repository. It has a name or id that identifies uniquely and can have a message that describes the meaning of the changes.

You decide what to commit by adding changes to the stage.

You decide when to commit by doing this:

git commit -m "Commit message"
Enter fullscreen mode Exit fullscreen mode

The commit message is an humane readable description of the changes you want to register. It's recommended to write in imperative mode and, ideally, the changes commited should be undoable in a single step (i.e: removing that commit from the history).

Remote

A repository is a local folder that contains your work and register its changes every time you commit them.

But, what if you want to share you work with others? Or if you want to access it from several computers?

What you need then is a remote repository that is synched with your local one, so the changes you make locally will be reflected in the remote, and you, or others, could get that changes from the remote to be applied into your local.

The most popular place to store remote repositories is Github, but it's no the only one. In fact, you could share your repo in a local network.

You can set up a project into github from the command line os simply go to the Github page to do so.

Once your local repository and the remote are synched, you could share and get the changes.

Usually, and by default, remote is named origin.

After you commit you can share the changes with the remote using push.

git push origin
Enter fullscreen mode Exit fullscreen mode

If you want to update your local repository with the latest published changes you pull them.

git pull
Enter fullscreen mode Exit fullscreen mode

Master

The succession of commits is the history of your project. From the beginning this history happens in a branch called master. Every time you perform a commit a new point in the history is set with an id to name it.

You can rewind to a certain point in the history if you want or need it. A pointer to the current commit, or point in the history, is called HEAD.

But you don't have to limit yourself to only one branch.

Branches

Many times you'll want to explore things or work on your project without touch the work you have done until the moment.

In that case, a good thing to do is to create a branch.

A branch is a deviation from the course of history reflected by master. The master branch and the new one can evolve differently starting in the same commit. Some time in the future you could merge them again but, for now, you can change things in one of the branches without affecting the other.

Imagine you have a succession of commits like this:

m1---m2---m3--m4
Enter fullscreen mode Exit fullscreen mode

You decide to start a new branch at m4 commit so you can create a new feature without affecting or modifying the current code in master.

m1--m2--m3--m4
             |
            m4
Enter fullscreen mode Exit fullscreen mode

Then, you add changes to this branch:

m1--m2--m3--m4
             |
            m4--b1--b2--b3
Enter fullscreen mode Exit fullscreen mode

If you don't perform any change in master, you could easily merge the b branch again into master, applying the b* commits into master.

But it is possible to work in the master branch, and make another changes while not affecting the work in the b branch.

m1--m2--m3--m4--m5--m6
             |
            m4--b1--b2--b3
Enter fullscreen mode Exit fullscreen mode

The problem comes later, when you want to merge b branch into master. Perhaps some of the changes affects in different ways, so we probably will find conflicts.

Conflict

A conflict appears when different changes are applied to the same objects.

Consider the previous example:

m1--m2--m3--m4--m5--m6
             |
            m4--b1--b2--b3
Enter fullscreen mode Exit fullscreen mode

Imagine that commit m5 changes a file named User.php, and commit b2 changes the same file. Those changes could conflict if affecting to the same code lines. Working in b branch you don't know that those changes have been made, so you aren't taking them into account.

The conflict arises when you want to apply your own changes to the master branch and git finds that it is unable to merge the changes in file User.php because it doesn't know which of them should prevail.

Sometimes, git can apply changes from both branches because they affect to different parts of the files. We say that they are no conflicting changes. The rest of the time, git will need your help to decide how to perform the merge, so it notifies there are conflicts that you must resolve before proceed.

Resolving a conflict means that you create a new set of changes defining a new version of the code where you have chosen what better suits to the needs of your program or even rewrite the code entirely. After that, you mark the conflict as resolved by adding de changes and committing as usual.

Preventing conflicts

In an environment with several developers working in the very same files it could happen that master branch evolves at the same time you are working in a branch, while other devs are merging changes to the master. So, it's easy that some concrete changes in master could potentially affect files whichi you are modifying in your own branch.

One way to prevent this is merging or rebasing the master into your branch frequently, so code is up to date to the last changes while you advance with your work.

Merge

m1--m2--m3--m4--m5--m6
             |
            m4--b1--b2--b3
Enter fullscreen mode Exit fullscreen mode

To perform the merge

git checkout branch
git merge master (or origin master)

>>> Conflict
Enter fullscreen mode Exit fullscreen mode

Resolve conflicts, add the changes and commit:

git add .
git commit -m "Conflict between master and branch resolved..."
Enter fullscreen mode Exit fullscreen mode

Merge branch into master

git checkout master
git merge branch
Enter fullscreen mode Exit fullscreen mode

You should be done if no other changes were applied to master.

m1--m2--m3--m4------------m5--m6
             |           /
            m4--b1--b2--b3
Enter fullscreen mode Exit fullscreen mode

Rebase

Rebase is a way to rebuild the history of your branch rewinding the head to the last common commit with master (the point in the history where you created your branch) then applying all the changes in master and finally applying the changes in your branch.

If conflict arise during this process you resolve them one by one and get a clean branch with both the changes from master and from your branch applied. This way, if you want to merge your changes into master yo will find no conflicts. All the management of conflicts happened in the context of your branch.

m1--m2--m3--m4--m5--m6
             |
            m4--b1--b2--b3
Enter fullscreen mode Exit fullscreen mode

To perform the rebase

git checkout branch
git pull --rebase master

>>> Conflict
Enter fullscreen mode Exit fullscreen mode

Make the changes needed and add them.

git add .
Enter fullscreen mode Exit fullscreen mode

Then, continue rebasing until there are no conflicts left and the process end.

git rebase --continue
Enter fullscreen mode Exit fullscreen mode

If after applying a commit there are no files to add, use --skip instead of --continue:

git rebase --skip
Enter fullscreen mode Exit fullscreen mode

After rebase, you can checkout master and merge the another branch

git checkout master
git merge branch
Enter fullscreen mode Exit fullscreen mode
m1--m2--m3--m4--m5--m6--b1--b2--b3
Enter fullscreen mode Exit fullscreen mode

Top comments (0)