What are your favorite git features or tricks, or even workflows? Post one feature, trick, or workflow per answer.
|
38
|
|||||
|
|
|
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:
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. |
|||
|
|
|
|
The Git Magic 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. |
||
|
|
|
git stash - 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 git rebase -i and squashing) git commit --amend - for those of us who have a terrible habit of committing before compiling/testing. |
||||
|
|
|
My favourite feature, hands down, is the index. 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 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 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. 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. |
||
|
|
|
|
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:
|
||
|
|
|
|
To echo @Aristotle Ppagaltzis, the index allows you to do neat stuff like commit partial changes within a single file.
|
||
|
|
|
|
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. 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. So I run I'd done a fairly innocent seeming cast of a pointer, which screwed up some pointer arithmetic, since you're so curious. 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: git bisect run |
||
|
|
|
|
|||
|
|
|
There is only one trick: Use git! |
||
|
|
|
|
|
||
|
|
|
|
Here's a neat trick: Create a script named git-foo in your $PATH. When you run 'git foo', it'll call your custom script. This is the easiest way to add commands to git and have them appear to be built-in. |
||
|
|
|
Show Branch Name in Bash PromptGreat 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
The shell will now display the following prompt:
|
||
|
|
|
|
gitready.com is awesome -- lots of tip-of-the-day style tricks. |
||
|
|
|
|
Adding alias definitions using git config. Here's some that I often use:
|
||
|
|
|
|
Simply knowing that git reflog 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 git rebase, git reset, and git commit --amend. Show every commit that the master branch has pointed to in the past:
Revert to the tenth commit in the list:
Start a new branch from the commit that the master pointed to one month back:
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. |
|||
|
|
|
|
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. 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. |
||||
|
|
|
|
||
|
|
|
|
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. |
||
|
|
|
|
Add this short script to your .zshrc
to get your command line prompt to display current branch/tag you're on. A bit more in-depth look into vsc_info here |
|||
|
|
|
|
Combination of 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 |
||
|
|
