Editing 1597: Git

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 8: Line 8:
  
 
==Explanation==
 
==Explanation==
===This is Git===
+
Git has a very cool distributed architecture, but the user experience is much more complex than other revision control systems. TFS, subversion or even Mercurial can be taught to junior developers in about 20 minutes, but it takes much longer to learn how to use Git’s basic features. It is very easy for Git to become deadlocked, which requires some obscure commands to fix. Unless you are an expert at Git, it is sometimes easier to delete your project and try again.
{{w|Git (software)|Git}} is a version control system, used to manage the code in many millions of software projects. It is very powerful, and was amongst the first widely adopted tools to use a distributed version control model (the "beautiful {{w|graph theory}} {{w|Tree (graph theory)|tree model}}"), meaning that there is no single central repository of code. Instead, users share code back and forth to synchronise their repositories, and it is up to each project to define processes and procedures for managing the flow of changes into a stable software product.
 
  
===How do we use it?===
+
There are things that Git does that other RCS don’t do. (I am not entirely sure what they are, to be totally honest. When the question is asked, the responses usually just talk about the architecture.) Git experts tend to like that the software is more powerful than other RCS systems, and some tend to be dismissive of how difficult other people find it to use. Many people (such as myself and Cueball) find the architecture cool, but are not Git experts.
Although very powerful, the command line of Git is notoriously difficult to master. Dozens of blog posts and websites (see [http://think-like-a-git.net/epic.html], [http://stevebennett.me/2012/02/24/10-things-i-hate-about-git/]), and even books ([http://blog.anvard.org/conversational-git/chapter-01.html], [http://git-scm.com/book/en/v2]) have been written to help users navigate this complexity.  
 
  
The difficulty of using Git in common situations is contradicted by the apparent simplicity of its use in tutorial-style situations. Committing and sharing changes is fairly straightforward, for instance, but recovering from situations such as accidental commits, pushes or bad merges is difficult without a solid understanding of the rather large and complex conceptual model. For instance, three of the top five highest voted questions on Stack Overflow are questions about how to carry out relatively simple tasks: undoing the last commit, changing the last commit message, and deleting a remote branch.
+
So this is the joke. There is a conflict between how experts typically TALK about Git, and how most users actually USE Git. The humor comes from having a character say things that many people think, but wouldn’t say out loud for fear of looking stupid.
  
This comic thus explores the difference between the idealised view of Git's architecture, and its actual typical usage. Tutorials for Git tend to use simple systems in their examples, and only deal with the most basic commands to get started, which can create the misleading impression that Git can be used effectively without extensive study.
+
==Alternative==
  
Due to this problem, compounded by the fact that Git's commands are named differently from similar commands in other version control systems, many users (including Cueball) are unable to use it beyond basic commands, and might try to avoid problems by saving their code outside Git, downloading a newer copy, and then re-applying their changes to the new copy instead of trying to understand and use the features that exist in Git to accomplish this task.
+
This comic is a play on how {{w|Git (software)|git}}, a popular {{w|version control}} system, is misused by people who have a very poor understanding of its inner workings. Git is a particularly apt target for such a joke due to its widespread use and the significant discrepancy between its perceived complexity and its underlying design. Tutorials for git tend to use simple systems in their examples, and only deal with the most basic commands to get started, which can create the misleading impression that git can be used effectively without extensive study.
  
===Memorize these shell commands===
+
Due to this problem, compounded by the fact that git's commands are named differently from similar commands in other version control systems, many users (including Cueball) are unable to use it beyond basic commands, and might try to avoid problems by saving their code outside git, downloading a newer copy, and then re-applying their changes to the new copy instead of trying to understand and use the features that exist in git to simplify this task.
Cueball suggests "just memoriz[ing] these shell commands and type them to sync up". He is probably referring to a sequence of commands such as:
 
  
    git pull
+
Whenever complications arise, for example because one developer has changed code that another developer has already changed, or because of a mistaken attempt to undo a mistake, this behaviour can easily lead to a corrupt repository. To overcome this problem, Cueball suggests that Ponytail keeps an alternative copy of her project outside git which, of course, defeats the purpose of employing a version control system to begin with.
    # remote changes have now been received, so work on your file
 
    git add file.txt
 
    git commit -m "Added some text"
 
    git push
 
  
===If you get errors...===
+
git.txt in this case refers to a file that this development team has put into the repository, with readme-like instructions in a simple text file. This kind of file is usually helpful for special tasks like creating databases, or dealing with unusual quirks of a project. Its use here is ironic because git should be well understood by developers, as it is a basic tool. Moreover, you have to use git to get the file to be able to read it in the first place.
As long as every contributor to the project follows these principles, this may suffice for a while. But many situations may cause "errors":
 
  
* merge conflicts (two people editing the same part of the same file)
+
Putting a telephone number of someone who "understands git" into such a file is humorous because:
* unmerged changes (another person committed a change before you did, so you need to merge their changes first)
+
*Software teams would more normally use electronic means of communication
* attempting to recover from a situation such as an accidental merge, and making the situation worse.
+
*Explaining git over the phone to team members should not be necessary, as there is extensive help available online, and
 +
*In the situation where many team members would need phone support to avoid or fix basic git problems, this would be extremely distracting to the person whose phone number was given in the file.
  
In a situation such as a merge conflict, Git will show an error message such as:
+
Git was originally created by {{w|Linus Torvalds}}, the same person who originally created {{w|Linux}}.
  
    CONFLICT (modify/delete): README.md deleted in HEAD and modified in branch-b. Version branch-b of README.md left in tree.
 
    # Automatic merge failed; fix conflicts and then commit the result.
 
 
===Save your work elsewhere...===
 
Although Git experts can of course deal with such situations, the remedy proposed by Cueball is "save your work elsewhere, delete the project, and download a fresh copy". That is, to copy the files out of their local repository's working directory, delete that whole structure, then clone the remote repository again (and, implicitly, copy the saved work back again):
 
 
# Copy files elsewhere
 
mkdir /tmp/myproject
 
cp * /tmp/myproject
 
cd ..
 
# delete the project
 
rm -rf myproject
 
 
# Download a fresh copy
 
git clone https://github.com/myorg/myproject
 
cd myproject
 
 
# Copy saved work
 
cp /tmp/myproject/* .
 
 
Abandoning the old project likely means losing some work, but may be faster and give a more predictable outcome than attempting to salvage the situation. Applying this method to a mere merge conflict issue may prolong the issue however, as the merge conflicts may still be present.
 
 
===Title text===
 
The title text suggests an alternative method for working around Git's complexities, which reflects common practice: knowing a "Git expert" who can help in any situation. Such experts are somewhat notorious for waxing lyrically about Git's strengths, so it may be necessary to win their favour by first letting them ramble enthusiastically about it. They will hopefully eventually give the exact commands needed. In practice, the question-and-answer site Stack Overflow is frequently used for this exact purpose.
 
 
It may even be a reference to the infamous tweet "[https://twitter.com/agnoster/status/44636629423497217 Git gets easier once you get the basic idea that branches are homeomorphic endofunctors mapping submanifolds of a Hilbert space]" which has been [http://www.beyondjava.net/blog/git-explained-in-really-simple-words/ discussed here] but it is inconclusive whether a meaningful interpretation exists.
 
 
Putting a telephone number of someone who "understands Git" into such a file is humorous because:
 
*Software teams would more normally use electronic means of communication
 
*Explaining Git over the phone to team members should not be necessary, as there is extensive help available online, and
 
*In the situation where many team members would need phone support to avoid or fix basic Git problems, this would be extremely distracting to the person whose phone number was given in the file.
 
 
=== TL;DR===
 
 
In short: programmers use {{w|Version control|version control systems}} to track changes to code. Most of these version control systems are quite similar and easy to learn if you already know another one. Git is a version control system based on completely different principles, and most programmers find it difficult to wrap their heads around it (although Git also offers a large number of nontrivial benefits over standard version control systems, which is why it is used). Cueball is one of those programmers.
 
In short: programmers use {{w|Version control|version control systems}} to track changes to code. Most of these version control systems are quite similar and easy to learn if you already know another one. Git is a version control system based on completely different principles, and most programmers find it difficult to wrap their heads around it (although Git also offers a large number of nontrivial benefits over standard version control systems, which is why it is used). Cueball is one of those programmers.
  
== Trivia ==
+
The comic [[1296]] also features git.
 
 
This comic was referenced in an earlier version of the page for ''what if?'' #153, where Randall, due to a problem with git, had at one time erroneously posted a draft of his ''[[what if? (blog)|what if?]]'' piece on peptides. As of December 17th, 2016 the page read:
 
 
 
:;Whoops
 
:This article is still in progress. An early draft was unintentionally posted here thanks to Randall's {{xkcd|1597|troubled approach to git}}, and it took a little bit to get everything sorted out and rolled back. Sorry for the mixup!
 
 
 
On January 30, 2017, the page was updated with a completed article, ''{{what if|153|Hide the Atmosphere}}''.  As of September 23, 2019, the page no longer contains any reference to this comic or Randall's earlier mistake with Git (or anything related to Git, for that matter).
 
 
 
The comic [[1296: Git Commit]] also features Git.
 
  
 
==Transcript==
 
==Transcript==
Line 94: Line 45:
 
[[Category:Comics featuring Ponytail]]
 
[[Category:Comics featuring Ponytail]]
 
[[Category:Comics featuring Hairy]]
 
[[Category:Comics featuring Hairy]]
 +
[[Category:Programming]]
 
[[Category:Computers]]
 
[[Category:Computers]]
[[Category:Programming]]
+
[[Category:Internet]]
[[Category:Version Control]]
 

Please note that all contributions to explain xkcd may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see explain xkcd:Copyrights for details). Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel | Editing help (opens in new window)

Templates used on this page: