git-log combining different detail levels

2012-08-22 Thread Maaartin-1
mpler (and maybe more important) example is merging git log -p some/dir and git log --name-status so I could see all the changes, and the chosen ones with all details. Is this somehow possible? Regards, Maaartin. -- To unsubscribe from this list: send the line "unsubscribe git" in the bo

Re: Comparing the working tree with a commit should be independent of the index

2012-08-20 Thread Maaartin
r would suit me, but I can live with the current one. There aren't much cases when it makes a difference and git commands have already a lot of options. > In short, I do not think there is a bug in the current behaviour. I can live with it. Many thanks for your answer. Do you care to copy-pa

Comparing the working tree with a commit should be independent of the index

2012-08-18 Thread Maaartin
I've already posted it to SO [1], but got no satisfactory answer. The command git diff mycommit compares the working tree against mycommit, so it should not depend on the index. But it does as this example shows: git init echo A > A.txt; git add .; git commit -m A; git branch A echo B > B.txt;