What are your favorite git features or tricks? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T00:38:30Z http://stackoverflow.com/feeds/question/347901 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks 30 What are your favorite git features or tricks? Scotty Allen 2008-12-07T18:46:14Z 2009-11-27T02:32:04Z <p>What are your favorite git features or tricks, or even workflows? Post one feature, trick, or workflow per answer.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/347903#347903 9 Answer by Scotty Allen for What are your favorite git features or tricks? Scotty Allen 2008-12-07T18:46:35Z 2008-12-08T01:24:48Z <p>My favorite feature is interactive rebase back to the last upstream commit. This allows me to edit, merge(squash), and drop all of the commits I haven't pushed upstream yet, before I do so. Since I work on top of svn, my workflow looks something like:</p> <pre><code>git rebase -i svn/working_branch &lt;edit/squash/drop/etc&gt; </code></pre> <p>This gives me a list of all of the changes I have on this branch that aren't in svn. I repeat the above as necessary, often doing squashes and reordering in multiple steps to reduce the impact of merges and keep myself sane. When I'm satisfied my commits are clear and coherent, then I do one final unit test run before I dcommit.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/347909#347909 9 Answer by Greg Hewgill for What are your favorite git features or tricks? Greg Hewgill 2008-12-07T18:51:27Z 2008-12-07T18:51:27Z <p>The <a href="http://www-cs-students.stanford.edu/~blynn/gitmagic/" rel="nofollow">Git Magic</a> article is an excellent reference for tips and tricks. I still go back and reread it occasionally to pick up new things that I missed the previous time I read it.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/347930#347930 20 Answer by Abizern for What are your favorite git features or tricks? Abizern 2008-12-07T19:09:53Z 2009-10-02T15:53:18Z <p><strong>git stash</strong> - Great for quickly parking what you're working on, switching to another branch to work on, and then going back to what you were doing. Saves making a commit (not that spurious commits are a problem in git thanks to <strong>git rebase -i</strong> and squashing)</p> <p><strong>git commit --amend</strong> - for those of us who have a terrible habit of committing before compiling/testing.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/347961#347961 15 Answer by Aristotle Pagaltzis for What are your favorite git features or tricks? Aristotle Pagaltzis 2008-12-07T19:38:07Z 2008-12-07T19:38:07Z <p>My favourite feature, hands down, is <b>the index</b>. Since my initial surprise about it abated and I got used to it, I have wondered why anyone would want to work without this concept. The initial bewilderment about the behaviour of <code>git diff</code> with regards to the index turned into solid conviction.</p> <p>Often when I start to do a particular thing in a codebase, I don’t have a clear idea up front about what I will want to do. With git, I just start working and see where the work takes me. I can use <code>git add</code> to incrementally add things for the next commit to the index, either as I work or afterwards, and use <code>git diff</code> to review which tentative changes I have not yet evaluated.</p> <p>In that way, git lets me follow a pretty free-wheeling style of work, while still allowing me to easily render it as a series of small coherent patches once I have found out what made sense to do. I don’t need to plan ahead carefully and follow the plan meticulously.</p> <p>Yeah, the index is an extra layer of indirection that seems unnecessary at first glance. What I have found is that instead it is liberating.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/347966#347966 14 Answer by Dustin for What are your favorite git features or tricks? Dustin 2008-12-07T19:41:00Z 2008-12-07T19:41:00Z <p>I tend to work on master optimistically. I'll occasionally need to retroactively create a branch to put my work off to the side. git makes this easy. I don't always have the same recipe, but it'll look something like this:</p> <pre><code># Convert the recent work on master to a feature branch git branch feature-branch # Drop my master back to the same ref as origin git reset --hard origin/master # Switch to the new branch git checkout feature-branch </code></pre> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/348460#348460 3 Answer by Will Robertson for What are your favorite git features or tricks? Will Robertson 2008-12-08T01:14:55Z 2008-12-08T01:14:55Z <p>To echo @Aristotle Ppagaltzis, the index allows you to do neat stuff like commit partial changes within a single file.</p> <pre><code>git add --interactive </code></pre> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/348461#348461 33 Answer by Peter Burns for What are your favorite git features or tricks? Peter Burns 2008-12-08T01:16:08Z 2008-12-08T01:16:08Z <p><a href="http://www.kernel.org/pub/software/scm/git/docs/git-bisect.html" rel="nofollow">git bisect</a></p> <p>So in this C project I was working on recently, one of our regression tests began failing. The project was in an in-between state, so I figured something was just temporarily broken, and as we filled things back in it would probably pass again.</p> <p>A good number of commits went by and things started to come together, but this old test was still failing. Clearly someone had actually introduced a bug along the line, rather than merely introducing a temporary hole in functionality.</p> <p>So I run <code>git bisect start</code>, then <code>git bisect bad</code> on the experimental head of the repository. Then I jump back about thirty commits to find one where the test passes and I run <code>git bisect good</code>. git then jumps me to a commit halfway between the known good and the known bad commits, I run the test and do <code>git bisect good</code> or <code>git bisect bad</code>. Repeat this process about five times and I'm right at the commit where the bug was introduced.</p> <p>I'd done a fairly innocent seeming cast of a pointer, which screwed up some pointer arithmetic, since you're so curious.</p> <p>All in all it took just a couple of minutes. However, it turns out I did this the slow way. Since I had a test program that returned 0 on success and something else on failure, I could have simply given git the command to run it, and it could have found the commit in question in seconds. See: <a href="http://www.kernel.org/pub/software/scm/git/docs/git-bisect.html#_bisect_run" rel="nofollow">git bisect run</a></p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/348610#348610 4 Answer by davetron5000 for What are your favorite git features or tricks? davetron5000 2008-12-08T03:41:30Z 2009-10-13T03:08:29Z <pre><code>git checkout -b some-experiment # do some work git commit -m 'some feature' # do some more work git commit -m 'some other feature' # experiment fails git checkout master # start working on new thing git commit -m 'some mundane bugifx' # realize I need some code from my experimental branch, but not the whole thing gitk --all # figure out the sha-1 of the change I want git cherry-pick the_sha1_of_some_other_feature </code></pre> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/365085#365085 -9 Answer by ffesti for What are your favorite git features or tricks? ffesti 2008-12-13T10:36:43Z 2008-12-13T10:36:43Z <p>There is only one trick: Use git!</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/365209#365209 12 Answer by cypher for What are your favorite git features or tricks? cypher 2008-12-13T13:20:05Z 2008-12-13T13:20:05Z <p><code>git add --patch</code> (or <code>-p</code>) and its big brother <code>git add --interactive</code> (or <code>-i</code>). They allow you to stage only certain chunks from all the changes you have in your working directory into the index, and you can even edit them, so your commit looks exactly the way you want it to.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/402878#402878 7 Answer by David for What are your favorite git features or tricks? David 2008-12-31T12:24:05Z 2008-12-31T12:24:05Z <p>Here's a neat trick:</p> <p>Create a script named git-foo in your $PATH. When you run 'git foo', it'll call your custom script.</p> <p>This is the easiest way to add commands to git and have them appear to be built-in.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/583587#583587 17 Answer by Casey for What are your favorite git features or tricks? Casey 2009-02-24T21:02:51Z 2009-02-24T21:02:51Z <h2>Show Branch Name in Bash Prompt</h2> <p>Great tip for working with git from the command line. Basically, you can set your Bash prompt to display your active git branch, if and only-if you are inside of a git repository. You can do this by updating the <code>PS1</code> define or adding to the end of your <code>.bashrc</code> file.</p> <pre><code>PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' </code></pre> <p>The shell will now display the following prompt:</p> <pre><code>[user@host workingdir (master)]$ </code></pre> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/763123#763123 5 Answer by ramanujan for What are your favorite git features or tricks? ramanujan 2009-04-18T08:17:01Z 2009-04-18T08:17:01Z <p>gitready.com is awesome -- lots of tip-of-the-day style tricks. </p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/1140559#1140559 7 Answer by Ropez for What are your favorite git features or tricks? Ropez 2009-07-16T21:55:39Z 2009-07-16T21:55:39Z <p>Adding <strong>alias</strong> definitions using <strong>git config</strong>. Here's some that I often use:</p> <pre><code>git config --global alias.st status git config --global alias.co checkout git config --global alias.ci commit git config --global alias.br branch git config --global alias.staged 'diff --cached' </code></pre> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/1140618#1140618 3 Answer by Ropez for What are your favorite git features or tricks? Ropez 2009-07-16T22:13:06Z 2009-07-16T22:39:36Z <p>Simply knowing that <strong>git reflog</strong> exists, and will allow me to revert to any previous commit if something has gone wrong. It remembers those commits that was "deleted" by rewriting history, using commands like <strong>git rebase</strong>, <strong>git reset</strong>, and <strong>git commit --amend</strong>.</p> <p>Show every commit that the master branch has pointed to in the past:</p> <pre><code>git reflog show master </code></pre> <p>Revert to the tenth commit in the list:</p> <pre><code>git reset --hard master@{10} </code></pre> <p>Start a new branch from the commit that the master pointed to one month back:</p> <pre><code>git checkout -b branchX master@{'one month ago'} </code></pre> <p>Maybe not the features that you use most often, but knowing that they exist allows you to use other features without worrying about destroying anything.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/1316113#1316113 3 Answer by Tchalvak for What are your favorite git features or tricks? Tchalvak 2009-08-22T14:42:51Z 2009-08-22T14:42:51Z <p>Just the basic fast and whenever-you-want branching. Having come from using svn, the ability to separate changes out from each-other and continue coding on two different branches effortlessly is priceless.</p> <p>I use branches for my feature todo list, for bugfixes, for backups, and I love that the branches don't exist in a certain path, they're just waiting in an alternate dimension to be switched to at any time.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/1644872#1644872 1 Answer by Diego Pino for What are your favorite git features or tricks? Diego Pino 2009-10-29T16:17:51Z 2009-10-29T16:17:51Z <p><code>git blame</code> is too verbose to my taste (although you can customize output format) I recently discovered <code>git gui blame</code>, which I find much easier to read. </p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/1674260#1674260 3 Answer by Miguel Ping for What are your favorite git features or tricks? Miguel Ping 2009-11-04T14:51:00Z 2009-11-04T14:51:00Z <p>One of my favourite features of git (and mercurial, and probably other DVCS) is that I can just zip up my project's folder and I have a working repo with full history. No need to pull/push whatever (although I know I can do that), I just send a zip and voilá, the repo is there as well as its history.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/1806451#1806451 0 Answer by Art for What are your favorite git features or tricks? Art 2009-11-27T01:56:47Z 2009-11-27T02:16:54Z <p>Add <a href="http://xana.scru.org/xana2/quanks/vcsinfoprompt/" rel="nofollow">this</a> short script to your .zshrc </p> <pre><code>autoload -Uz vcs_info precmd() { psvar=() vcs_info [[ -n $vcs_info_msg_0_ ]] &amp;&amp; psvar[1]="$vcs_info_msg_0_" } PS1="%m%(1v.%F{red}%1v%f.)%# " </code></pre> <p>to get your command line prompt to display current branch/tag you're on.</p> <p>A bit more in-depth look into vsc_info <a href="http://kriener.org/articles/2009/06/04/zsh-prompt-magic" rel="nofollow">here</a></p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/1806504#1806504 0 Answer by Igor Zevaka for What are your favorite git features or tricks? Igor Zevaka 2009-11-27T02:32:04Z 2009-11-27T02:32:04Z <p>Combination of <code>git stash</code> and <code>git fetch</code>. This applies for when you have a team of people working with a central repository (like gitorious or gitosis). </p> <p>If I am working on something and then when I am ready to push the changes instead of just committing them I would do a fetch to see if the remote has changed. If it's changed I would stash, do <code>git merge origin</code>, then <code>git stash apply</code>. This avoids an automatic merge message when you pull on top of your commit (like <code> Merge branch 'master' of &lt;server&gt;:project</code>).</p>