up vote 11 down vote favorite
4
share [g+] share [fb]

Can I embed the following bash shell code:

for name in $(git diff --name-only $1); do git difftool $1 $name & done

directly into the creation of a git alias:

git config --global alias.diffall ***my-bash-code-here***

This leads on from my previous question/answer on SO, where I put the code into a .sh file and then aliased to the file:

git config --global alias.diffall '!sh diffall.sh'

But in the never-ending quest for simplicity, there's gotta be a way to skip the file and insert code directly into the alias? I can't figure out the format...

link|improve this question

40% accept rate
feedback

4 Answers

up vote 15 down vote accepted
git config --global alias.diffall '!sh diffall.sh'

This is redundant in one way. If you are going to add 'diffall.sh' into your $PATH anyway, why not save it as 'git-diffall', and save yourself from declaring an alias. Yes, "git diffall" will run it.

link|improve this answer
Hah, well there ya go, simple as that :) Thanks kaizer ! – Seba Illingworth Aug 21 '09 at 1:50
feedback

Adding these 2 line to your .git/config file should do the trick.

[alias]
    diffall = '!for name in $(git diff --name-only $1); do git difftool $1 $name & done'

Edit: presumably the git-config version works too, but I like to keep my aliases in the config file for ease of management.

There is a nice page on the git wiki that explains aliases very clearly: http://git.or.cz/gitwiki/Aliases In particular, read 'advanced aliases with arguments'

link|improve this answer
git config --global will store your aliases on $HOME/.gitconfig, where (IMO) they are even easier to manage; almost no aliases need to be repository specific. (Repo specific go into repo/.git/config) – kaizer.se Aug 21 '09 at 1:31
Thanks David, but it just won't work for me - that or any of the variations in the great link you included. Maybe I should have mentioned that I'm running in Windows environment? Thanks Kaizer, agreed, this is 'global' for me. – Seba Illingworth Aug 21 '09 at 1:48
feedback

I couldn't find in documentation, but if you create a script "git-<name>" in path, you can call it with "git name" in your repo.

See:

$ cd ~/bin
$ echo "echo I love this log:
>pwd
>git log --graph  --summary --decorate --all" > git-logg
$ chmod +x git-logg
$ cd /path/to/your/repo
$ git logg
I love this log:
/path/to/your/repo
* commit 3c94be44e4119228cc681fc7e11e553c4e77ad04 (whatever-branch)
| Author: myself <my@Laptop.(none)>
| Date:   Fri Apr 1 16:47:20 2011 +0200
| 
|     would have been better not to do it at all
| 
...
$

So, you can write any alias you like with this (rather obscure) way too.

link|improve this answer
+1, thought it would only work from the git libexec folder. thanks for sharing this tip – Olivier Refalo Jan 25 at 20:23
feedback

(From ProGit documentation: http://progit.org/book/ch7-3.html)

Have you tried to add a script in .git/hooks?

For example, if you create a script .git/hooks/post-checkout:

#!/bin/bash

echo "This is run after a 'git checkout'"

and then run the command:

$ git checkout master
Switched to branch 'master'
This is run after a 'git checkout'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.