summaryrefslogtreecommitdiff
path: root/t/t3101-ls-tree-dirname.sh
Commit message (Collapse)AuthorAgeFilesLines
* Rewrite "git-frotz" to "git frotz"Junio C Hamano2007-07-021-12/+12
| | | | | | This uses the remove-dashes target to replace "git-frotz" to "git frotz". Signed-off-by: Junio C Hamano <gitster@pobox.com>
* Get rid of the dependency to GNU diff in the testsJohannes Schindelin2007-03-041-1/+1
| | | | | | | | | | | | | | | Now that "git diff" handles stdin and relative paths outside the working tree correctly, we can convert all instances of "diff -u" to "git diff". This commit is really the result of $ perl -pi.bak -e 's/diff -u/git diff/' $(git grep -l "diff -u" t/) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net> (cherry picked from commit c699a40d68215c7e44a5b26117a35c8a56fbd387)
* tests: make scripts executableJunio C Hamano2005-12-191-0/+0
| | | | | | just for consistency. Signed-off-by: Junio C Hamano <junkio@cox.net>
* ls-tree: match the test to the new semantics.Junio C Hamano2005-11-281-30/+8
| | | | | | | | | | | | | | | The diff for this commit is a good illustration of what changed in ls-tree behaviour. - With -r, tree nodes themselves are not shown anymore, but blobs in subtrees are shown. - The order of paths parameters do not matter, since they are not like arguments to /bin/ls, but are filter patterns. - When filter patterns overlap, unintuitive things happen. Signed-off-by: Junio C Hamano <junkio@cox.net>
* Fix wrong filename listing bug in git-ls-tree.robfitz@273k.net2005-10-071-0/+160
This patch fixes a bug in git-ls-tree in which the wrong filenames are listed if the exact same file and directory contents are present in another location in the tree. Added a new series of test cases for directory and filename handling. Signed-off-by: Robert Fitzsimons <robfitz@273k.net> Signed-off-by: Junio C Hamano <junkio@cox.net>