Wilson Mar bio photo

Wilson Mar

Hello!

Calendar YouTube Github

LinkedIn

Here is an (evolving) explanation of illustrating how Git refers to commits and branches

US (English)   Norsk (Norwegian)   Español (Spanish)   Français (French)   Deutsch (German)   Italiano   Português   Estonian   اَلْعَرَبِيَّةُ (Egypt Arabic)   Napali   中文 (简体) Chinese (Simplified)   日本語 Japanese   한국어 Korean

Overview

The text to the video (below it) provides additional tips not shown in the video.

Video

NOTE: This is an early version and is undergoing revision now.

PROTIP: Print this picture and pin it on a wall for reference.

Narrative

The most amazing thing about Git as a source version management system is that I can have the working directory of my repository be restored to any specific point in time.

I’ve seen a lot of ways people explain this in a way that … confused me.

So let me know if the following helps you better understand time travel using Git.

I show this DC Comics character, Flash (copyright DC Comics), running “super-fast” toward us because I see an analogy.

The sequence of images represent different versions of the same person, but at different points in time.

Each version is visually a little bigger as it gets closer to our viewpoint. The body closest to us is the most recent version. In Git, that most recent version is called HEAD.

The at sign (@) is a shortcut for HEAD.

Versions before HEAD we can reference in Git using a number of HEAD references with a caret or “hat” character.

Such references are what Git calls “commit-ish” because Git maintains versions using a chain of “commits”, a term borrowed from SQL database commands for saving a set of data.

The initial commit was established by a git init command which creates the database of version information. From there, a physical chain of commits leads us to the present, in a series of “parent” to “child” links.

  • The first commit is the only one that does not have a parent. To obtain the hash of such commits: *

   git rev-list --max-parents=0 HEAD
   

These ordinal number references can be used instead of carets in HEAD specifications.

This linkage is the mechanism that enables Git to tell us the difference of text content between two commits, of what has changed between two points in time.


   git diff HEAD..HEAD~3
   

When we make a new commit, it’s added in front of the current HEAD and Git automatically points HEAD to that new commit.

Notice all the HEAD references have been re-numbered.

We issue the git checkout command to have Git magically re-establish our working directory as it was at a past moment in time.

Getting back to my analogy, new commits are added after text in a file is saved.

Let’s step back for minute. Commits are created to a branch “Master” is the default branch. «<

But we can alternatively issue a checkout command to define a new branch (called “branch1”) as the current branch, then new commits would be added to that branch.

This is how separate “parallel universes” can exist at the same time.

The git merge command combines changes made into a new commit under the long-running master branch.

Then the working branch can be deleted.

Git Flow Branches

These actions are the mechanisms used in what’s called the Git workflow.

The master branch is typically used for what is on production servers.

If there is an emergency hotfix needed, a hotfix branch is created.

A develop branch is used to develop the next release, and merging with the hotfix when appropriate.

Separate feature branches may also be created to experiment with new techniques without disturbing existing work.

Once it’s working, the feature branch is merged and be part of a release branch used for system QA testing.

Create a hotfix branch, then merge it into the release branch and integration branch.

References

  • https://git-scm.com/docs/gitrevisions

  • http://stackoverflow.com/questions/4044368/what-does-tree-ish-mean-in-git

  • http://stackoverflow.com/questions/23303549/what-are-commit-ish-and-tree-ish-in-git

Alternate picture: https://www.pinterest.com/pin/394627986075737189/

More

This is one of a series on Git and GitHub:

  1. Git and GitHub videos

  2. Why Git? (file-based backups vs Git clone)
  3. Git Markdown text

  4. Git basics (script)
  5. Git whoops (correct mistakes)
  6. Git messages (in commits)

  7. Git command shortcuts
  8. Git custom commands

  9. Git-client based workflows

  10. Git HEAD (Commitish references)

  11. Git interactive merge (imerge)
  12. Git patch
  13. Git rebase

  14. Git utilities
  15. Git-signing

  16. Git hooks
  17. GitHub data security
  18. TFS vs GitHub

  19. GitHub actions for automation JavaScript
  20. GitHub REST API
  21. GitHub GraphQL API
  22. GitHub PowerShell API Programming
  23. GitHub GraphQL PowerShell Module