Junio C Hamano
19 years ago
72 changed files with 2579 additions and 0 deletions
@ -0,0 +1,202 @@
@@ -0,0 +1,202 @@
|
||||
#!/bin/sh |
||||
# |
||||
# Copyright (c) 2006 Junio C Hamano |
||||
# |
||||
|
||||
test_description='Various diff formatting options' |
||||
|
||||
. ./test-lib.sh |
||||
|
||||
test_expect_success setup ' |
||||
|
||||
GIT_AUTHOR_DATE="2006-06-26 00:00:00 +0000" && |
||||
GIT_COMMITTER_DATE="2006-06-26 00:00:00 +0000" && |
||||
export GIT_AUTHOR_DATE GIT_COMMITTER_DATE && |
||||
|
||||
mkdir dir && |
||||
for i in 1 2 3; do echo $i; done >file0 && |
||||
for i in A B; do echo $i; done >dir/sub && |
||||
cat file0 >file2 && |
||||
git add file0 file2 dir/sub && |
||||
git commit -m Initial && |
||||
|
||||
git branch initial && |
||||
git branch side && |
||||
|
||||
GIT_AUTHOR_DATE="2006-06-26 00:01:00 +0000" && |
||||
GIT_COMMITTER_DATE="2006-06-26 00:01:00 +0000" && |
||||
export GIT_AUTHOR_DATE GIT_COMMITTER_DATE && |
||||
|
||||
for i in 4 5 6; do echo $i; done >>file0 && |
||||
for i in C D; do echo $i; done >>dir/sub && |
||||
rm -f file2 && |
||||
git update-index --remove file0 file2 dir/sub && |
||||
git commit -m Second && |
||||
|
||||
GIT_AUTHOR_DATE="2006-06-26 00:02:00 +0000" && |
||||
GIT_COMMITTER_DATE="2006-06-26 00:02:00 +0000" && |
||||
export GIT_AUTHOR_DATE GIT_COMMITTER_DATE && |
||||
|
||||
for i in A B C; do echo $i; done >file1 && |
||||
git add file1 && |
||||
for i in E F; do echo $i; done >>dir/sub && |
||||
git update-index dir/sub && |
||||
git commit -m Third && |
||||
|
||||
GIT_AUTHOR_DATE="2006-06-26 00:03:00 +0000" && |
||||
GIT_COMMITTER_DATE="2006-06-26 00:03:00 +0000" && |
||||
export GIT_AUTHOR_DATE GIT_COMMITTER_DATE && |
||||
|
||||
git checkout side && |
||||
for i in A B C; do echo $i; done >>file0 && |
||||
for i in 1 2; do echo $i; done >>dir/sub && |
||||
cat dir/sub >file3 && |
||||
git add file3 && |
||||
git update-index file0 dir/sub && |
||||
git commit -m Side && |
||||
|
||||
GIT_AUTHOR_DATE="2006-06-26 00:04:00 +0000" && |
||||
GIT_COMMITTER_DATE="2006-06-26 00:04:00 +0000" && |
||||
export GIT_AUTHOR_DATE GIT_COMMITTER_DATE && |
||||
|
||||
git checkout master && |
||||
git pull -s ours . side && |
||||
|
||||
GIT_AUTHOR_DATE="2006-06-26 00:05:00 +0000" && |
||||
GIT_COMMITTER_DATE="2006-06-26 00:05:00 +0000" && |
||||
export GIT_AUTHOR_DATE GIT_COMMITTER_DATE && |
||||
|
||||
for i in A B C; do echo $i; done >>file0 && |
||||
for i in 1 2; do echo $i; done >>dir/sub && |
||||
git update-index file0 dir/sub && |
||||
|
||||
EDITOR=: VISUAL=: git commit --amend && |
||||
git show-branch |
||||
' |
||||
|
||||
: <<\EOF |
||||
! [initial] Initial |
||||
* [master] Merge branch 'side' |
||||
! [side] Side |
||||
--- |
||||
- [master] Merge branch 'side' |
||||
*+ [side] Side |
||||
* [master^] Second |
||||
+*+ [initial] Initial |
||||
EOF |
||||
|
||||
while read cmd |
||||
do |
||||
case "$cmd" in |
||||
'' | '#'*) continue ;; |
||||
esac |
||||
test=`echo "$cmd" | sed -e 's|[/ ][/ ]*|_|g'` |
||||
cnt=`expr $test_count + 1` |
||||
pfx=`printf "%04d" $cnt` |
||||
expect="../t4013/diff.$test" |
||||
actual="$pfx-diff.$test" |
||||
|
||||
test_expect_success "git $cmd" ' |
||||
{ |
||||
echo "\$ git $cmd" |
||||
git $cmd |
||||
echo "\$" |
||||
} >"$actual" && |
||||
if test -f "$expect" |
||||
then |
||||
diff -u "$expect" "$actual" && |
||||
rm -f "$actual" |
||||
else |
||||
# this is to help developing new tests. |
||||
cp "$actual" "$expect" |
||||
false |
||||
fi |
||||
' |
||||
done <<\EOF |
||||
diff-tree initial |
||||
diff-tree -r initial |
||||
diff-tree -r --abbrev initial |
||||
diff-tree -r --abbrev=4 initial |
||||
diff-tree --root initial |
||||
diff-tree --root --abbrev initial |
||||
diff-tree --root -r initial |
||||
diff-tree --root -r --abbrev initial |
||||
diff-tree --root -r --abbrev=4 initial |
||||
diff-tree -p initial |
||||
diff-tree --root -p initial |
||||
diff-tree --patch-with-stat initial |
||||
diff-tree --root --patch-with-stat initial |
||||
diff-tree --patch-with-raw initial |
||||
diff-tree --root --patch-with-raw initial |
||||
|
||||
diff-tree --pretty initial |
||||
diff-tree --pretty --root initial |
||||
diff-tree --pretty -p initial |
||||
diff-tree --pretty --stat initial |
||||
diff-tree --pretty --summary initial |
||||
diff-tree --pretty --stat --summary initial |
||||
diff-tree --pretty --root -p initial |
||||
diff-tree --pretty --root --stat initial |
||||
#diff-tree --pretty --root --summary initial |
||||
diff-tree --pretty --root --stat --summary initial |
||||
diff-tree --pretty --patch-with-stat initial |
||||
diff-tree --pretty --root --patch-with-stat initial |
||||
diff-tree --pretty --patch-with-raw initial |
||||
diff-tree --pretty --root --patch-with-raw initial |
||||
|
||||
diff-tree --pretty=oneline initial |
||||
diff-tree --pretty=oneline --root initial |
||||
diff-tree --pretty=oneline -p initial |
||||
diff-tree --pretty=oneline --root -p initial |
||||
diff-tree --pretty=oneline --patch-with-stat initial |
||||
diff-tree --pretty=oneline --root --patch-with-stat initial |
||||
diff-tree --pretty=oneline --patch-with-raw initial |
||||
diff-tree --pretty=oneline --root --patch-with-raw initial |
||||
|
||||
diff-tree --pretty side |
||||
diff-tree --pretty -p side |
||||
diff-tree --pretty --patch-with-stat side |
||||
|
||||
diff-tree master |
||||
diff-tree -p master |
||||
diff-tree -p -m master |
||||
diff-tree -c master |
||||
diff-tree -c --abbrev master |
||||
diff-tree --cc master |
||||
|
||||
log master |
||||
log -p master |
||||
log --root master |
||||
log --root -p master |
||||
log --patch-with-stat master |
||||
log --root --patch-with-stat master |
||||
#log --root --patch-with-stat --summary master |
||||
log -SF master |
||||
|
||||
whatchanged master |
||||
whatchanged -p master |
||||
whatchanged --root master |
||||
whatchanged --root -p master |
||||
whatchanged --patch-with-stat master |
||||
whatchanged --root --patch-with-stat master |
||||
whatchanged --root --patch-with-stat --summary master |
||||
whatchanged -SF master |
||||
|
||||
log --patch-with-stat master -- dir/ |
||||
whatchanged --patch-with-stat master -- dir/ |
||||
|
||||
show initial |
||||
show --root initial |
||||
show side |
||||
show master |
||||
show --stat side |
||||
show --stat --summary side |
||||
show --patch-with-stat side |
||||
show --patch-with-raw side |
||||
show --patch-with-stat --summary side |
||||
|
||||
|
||||
|
||||
EOF |
||||
|
||||
test_done |
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
$ git diff-tree --cc master |
||||
176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
diff --cc dir/sub |
||||
index cead32e,7289e35..992913c |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@@ -1,6 -1,4 +1,8 @@@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
+E |
||||
+F |
||||
+ 1 |
||||
+ 2 |
||||
diff --cc file0 |
||||
index b414108,f4615da..10a8a9f |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@@ -1,6 -1,6 +1,9 @@@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
+ A |
||||
+ B |
||||
+ C |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --patch-with-raw initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --patch-with-stat initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty=oneline --patch-with-raw initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty=oneline --patch-with-stat initial |
||||
$ |
@ -0,0 +1,33 @@
@@ -0,0 +1,33 @@
|
||||
$ git diff-tree --pretty=oneline --root --patch-with-raw initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a Initial |
||||
:000000 100644 0000000000000000000000000000000000000000 35d242ba79ae89ac695e26b3d4c27a8e6f028f9e A dir/sub |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file0 |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file2 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,35 @@
@@ -0,0 +1,35 @@
|
||||
$ git diff-tree --pretty=oneline --root --patch-with-stat initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a Initial |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 +++ |
||||
3 files changed, 8 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
$ git diff-tree --pretty=oneline --root -p initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a Initial |
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
$ git diff-tree --pretty=oneline --root initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a Initial |
||||
:000000 040000 0000000000000000000000000000000000000000 da7a33fa77d8066d6698643940ce5860fe2d7fb3 A dir |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file0 |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file2 |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty=oneline -p initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty=oneline initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty --patch-with-raw initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty --patch-with-stat initial |
||||
$ |
@ -0,0 +1,43 @@
@@ -0,0 +1,43 @@
|
||||
$ git diff-tree --pretty --patch-with-stat side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
$ |
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
$ git diff-tree --pretty --root --patch-with-raw initial |
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
:000000 100644 0000000000000000000000000000000000000000 35d242ba79ae89ac695e26b3d4c27a8e6f028f9e A dir/sub |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file0 |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file2 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
$ git diff-tree --pretty --root --patch-with-stat initial |
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 +++ |
||||
3 files changed, 8 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,15 @@
@@ -0,0 +1,15 @@
|
||||
$ git diff-tree --pretty --root --stat --summary initial |
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 +++ |
||||
3 files changed, 8 insertions(+), 0 deletions(-) |
||||
create mode 100644 dir/sub |
||||
create mode 100644 file0 |
||||
create mode 100644 file2 |
||||
$ |
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
$ git diff-tree --pretty --root --stat initial |
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 +++ |
||||
3 files changed, 8 insertions(+), 0 deletions(-) |
||||
$ |
@ -0,0 +1,34 @@
@@ -0,0 +1,34 @@
|
||||
$ git diff-tree --pretty --root -p initial |
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,11 @@
@@ -0,0 +1,11 @@
|
||||
$ git diff-tree --pretty --root initial |
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
:000000 040000 0000000000000000000000000000000000000000 da7a33fa77d8066d6698643940ce5860fe2d7fb3 A dir |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file0 |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file2 |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty --stat --summary initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty --stat initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty --summary initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty -p initial |
||||
$ |
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
$ git diff-tree --pretty -p side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree --pretty initial |
||||
$ |
@ -0,0 +1,11 @@
@@ -0,0 +1,11 @@
|
||||
$ git diff-tree --pretty side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
:040000 040000 da7a33fa77d8066d6698643940ce5860fe2d7fb3 f977ed46ae6873c1c30ab878e15a4accedc3618b M dir |
||||
:100644 100644 01e79c32a8c99c557f0757da7cb6d65b3414466d f4615da674c09df322d6ba8d6b21ecfb1b1ba510 M file0 |
||||
:000000 100644 0000000000000000000000000000000000000000 7289e35bff32727c08dda207511bec138fdb9ea5 A file3 |
||||
$ |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
$ git diff-tree --root --abbrev initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a |
||||
:000000 040000 0000000... da7a33f... A dir |
||||
:000000 100644 0000000... 01e79c3... A file0 |
||||
:000000 100644 0000000... 01e79c3... A file2 |
||||
$ |
@ -0,0 +1,33 @@
@@ -0,0 +1,33 @@
|
||||
$ git diff-tree --root --patch-with-raw initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a |
||||
:000000 100644 0000000000000000000000000000000000000000 35d242ba79ae89ac695e26b3d4c27a8e6f028f9e A dir/sub |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file0 |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file2 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,34 @@
@@ -0,0 +1,34 @@
|
||||
$ git diff-tree --root --patch-with-stat initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 +++ |
||||
3 files changed, 8 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
$ git diff-tree --root -p initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a |
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
$ git diff-tree --root -r --abbrev=4 initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a |
||||
:000000 100644 0000... 35d2... A dir/sub |
||||
:000000 100644 0000... 01e7... A file0 |
||||
:000000 100644 0000... 01e7... A file2 |
||||
$ |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
$ git diff-tree --root -r --abbrev initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a |
||||
:000000 100644 0000000... 35d242b... A dir/sub |
||||
:000000 100644 0000000... 01e79c3... A file0 |
||||
:000000 100644 0000000... 01e79c3... A file2 |
||||
$ |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
$ git diff-tree --root -r initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a |
||||
:000000 100644 0000000000000000000000000000000000000000 35d242ba79ae89ac695e26b3d4c27a8e6f028f9e A dir/sub |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file0 |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file2 |
||||
$ |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
$ git diff-tree --root initial |
||||
444ac553ac7612cc88969031b02b3767fb8a353a |
||||
:000000 040000 0000000000000000000000000000000000000000 da7a33fa77d8066d6698643940ce5860fe2d7fb3 A dir |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file0 |
||||
:000000 100644 0000000000000000000000000000000000000000 01e79c32a8c99c557f0757da7cb6d65b3414466d A file2 |
||||
$ |
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
$ git diff-tree -c --abbrev master |
||||
176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
::100644 100644 100644 cead32e... 7289e35... 992913c... MM dir/sub |
||||
::100644 100644 100644 b414108... f4615da... 10a8a9f... MM file0 |
||||
$ |
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
$ git diff-tree -c master |
||||
176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
::100644 100644 100644 cead32e925b1420c84c14cbf7cf755e7e45af8ad 7289e35bff32727c08dda207511bec138fdb9ea5 992913c5aa0a5476d10c49ed0f21fc0c6d1aedf3 MM dir/sub |
||||
::100644 100644 100644 b414108e81e5091fe0974a1858b4d0d22b107f70 f4615da674c09df322d6ba8d6b21ecfb1b1ba510 10a8a9f3657f91a156b9f0184ed79a20adef9f7f MM file0 |
||||
$ |
@ -0,0 +1,80 @@
@@ -0,0 +1,80 @@
|
||||
$ git diff-tree -p -m master |
||||
176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
diff --git a/dir/sub b/dir/sub |
||||
index cead32e..992913c 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -4,3 +4,5 @@ C |
||||
D |
||||
E |
||||
F |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index b414108..10a8a9f 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -4,3 +4,6 @@ |
||||
4 |
||||
5 |
||||
6 |
||||
+A |
||||
+B |
||||
+C |
||||
176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
diff --git a/dir/sub b/dir/sub |
||||
index 7289e35..992913c 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,4 +1,8 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
+E |
||||
+F |
||||
1 |
||||
2 |
||||
diff --git a/file0 b/file0 |
||||
index f4615da..10a8a9f 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,6 +1,9 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
A |
||||
B |
||||
C |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
diff --git a/file3 b/file3 |
||||
deleted file mode 100644 |
||||
index 7289e35..0000000 |
||||
--- a/file3 |
||||
+++ /dev/null |
||||
@@ -1,4 +0,0 @@ |
||||
-A |
||||
-B |
||||
-1 |
||||
-2 |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree -p initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree -p master |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree -r --abbrev=4 initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree -r --abbrev initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree -r initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree initial |
||||
$ |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
$ git diff-tree master |
||||
$ |
@ -0,0 +1,127 @@
@@ -0,0 +1,127 @@
|
||||
$ git log --patch-with-stat master |
||||
commit 176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
Merge: 889b315... c7a2ab9... |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:04:00 2006 +0000 |
||||
|
||||
Merge branch 'side' |
||||
|
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file1 | 3 +++ |
||||
2 files changed, 5 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 --- |
||||
3 files changed, 5 insertions(+), 3 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
$ |
@ -0,0 +1,72 @@
@@ -0,0 +1,72 @@
|
||||
$ git log --patch-with-stat master -- dir/ |
||||
commit 176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
Merge: 889b315... c7a2ab9... |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:04:00 2006 +0000 |
||||
|
||||
Merge branch 'side' |
||||
|
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
1 files changed, 2 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
--- |
||||
dir/sub | 2 ++ |
||||
1 files changed, 2 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
--- |
||||
dir/sub | 2 ++ |
||||
1 files changed, 2 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
$ |
@ -0,0 +1,159 @@
@@ -0,0 +1,159 @@
|
||||
$ git log --root --patch-with-stat master |
||||
commit 176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
Merge: 889b315... c7a2ab9... |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:04:00 2006 +0000 |
||||
|
||||
Merge branch 'side' |
||||
|
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file1 | 3 +++ |
||||
2 files changed, 5 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 --- |
||||
3 files changed, 5 insertions(+), 3 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 +++ |
||||
3 files changed, 8 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,140 @@
@@ -0,0 +1,140 @@
|
||||
$ git log --root -p master |
||||
commit 176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
Merge: 889b315... c7a2ab9... |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:04:00 2006 +0000 |
||||
|
||||
Merge branch 'side' |
||||
|
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
$ git log --root master |
||||
commit 176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
Merge: 889b315... c7a2ab9... |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:04:00 2006 +0000 |
||||
|
||||
Merge branch 'side' |
||||
|
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
$ |
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
$ git log -SF master |
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
$ |
@ -0,0 +1,113 @@
@@ -0,0 +1,113 @@
|
||||
$ git log -p master |
||||
commit 176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
Merge: 889b315... c7a2ab9... |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:04:00 2006 +0000 |
||||
|
||||
Merge branch 'side' |
||||
|
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
$ |
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
$ git log master |
||||
commit 176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
Merge: 889b315... c7a2ab9... |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:04:00 2006 +0000 |
||||
|
||||
Merge branch 'side' |
||||
|
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
$ |
@ -0,0 +1,42 @@
@@ -0,0 +1,42 @@
|
||||
$ git show --patch-with-raw side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
:100644 100644 35d242b... 7289e35... M dir/sub |
||||
:100644 100644 01e79c3... f4615da... M file0 |
||||
:000000 100644 0000000... 7289e35... A file3 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
$ |
@ -0,0 +1,44 @@
@@ -0,0 +1,44 @@
|
||||
$ git show --patch-with-stat --summary side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
create mode 100644 file3 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
$ |
@ -0,0 +1,43 @@
@@ -0,0 +1,43 @@
|
||||
$ git show --patch-with-stat side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
$ |
@ -0,0 +1,34 @@
@@ -0,0 +1,34 @@
|
||||
$ git show --root initial |
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
$ git show --stat --summary side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
create mode 100644 file3 |
||||
$ |
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
$ git show --stat side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
$ |
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
$ git show initial |
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
$ |
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
$ git show master |
||||
commit 176b998f5d647cbd77a9d8acf4531e930754d16d |
||||
Merge: 889b315... c7a2ab9... |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:04:00 2006 +0000 |
||||
|
||||
Merge branch 'side' |
||||
|
||||
diff --cc dir/sub |
||||
index cead32e,7289e35..992913c |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@@ -1,6 -1,4 +1,8 @@@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
+E |
||||
+F |
||||
+ 1 |
||||
+ 2 |
||||
diff --cc file0 |
||||
index b414108,f4615da..10a8a9f |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@@ -1,6 -1,6 +1,9 @@@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
+ A |
||||
+ B |
||||
+ C |
||||
$ |
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
$ git show side |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
$ |
@ -0,0 +1,114 @@
@@ -0,0 +1,114 @@
|
||||
$ git whatchanged --patch-with-stat master |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file1 | 3 +++ |
||||
2 files changed, 5 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 --- |
||||
3 files changed, 5 insertions(+), 3 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
$ |
@ -0,0 +1,59 @@
@@ -0,0 +1,59 @@
|
||||
$ git whatchanged --patch-with-stat master -- dir/ |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
1 files changed, 2 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
--- |
||||
dir/sub | 2 ++ |
||||
1 files changed, 2 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
--- |
||||
dir/sub | 2 ++ |
||||
1 files changed, 2 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
$ |
@ -0,0 +1,158 @@
@@ -0,0 +1,158 @@
|
||||
$ git whatchanged --root --patch-with-stat --summary master |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
create mode 100644 file3 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file1 | 3 +++ |
||||
2 files changed, 5 insertions(+), 0 deletions(-) |
||||
create mode 100644 file1 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 --- |
||||
3 files changed, 5 insertions(+), 3 deletions(-) |
||||
delete mode 100644 file2 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 +++ |
||||
3 files changed, 8 insertions(+), 0 deletions(-) |
||||
create mode 100644 dir/sub |
||||
create mode 100644 file0 |
||||
create mode 100644 file2 |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,152 @@
@@ -0,0 +1,152 @@
|
||||
$ git whatchanged --root --patch-with-stat master |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file3 | 4 ++++ |
||||
3 files changed, 9 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file1 | 3 +++ |
||||
2 files changed, 5 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 --- |
||||
3 files changed, 5 insertions(+), 3 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
--- |
||||
dir/sub | 2 ++ |
||||
file0 | 3 +++ |
||||
file2 | 3 +++ |
||||
3 files changed, 8 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,133 @@
@@ -0,0 +1,133 @@
|
||||
$ git whatchanged --root -p master |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
new file mode 100644 |
||||
index 0000000..35d242b |
||||
--- /dev/null |
||||
+++ b/dir/sub |
||||
@@ -0,0 +1,2 @@ |
||||
+A |
||||
+B |
||||
diff --git a/file0 b/file0 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file0 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
diff --git a/file2 b/file2 |
||||
new file mode 100644 |
||||
index 0000000..01e79c3 |
||||
--- /dev/null |
||||
+++ b/file2 |
||||
@@ -0,0 +1,3 @@ |
||||
+1 |
||||
+2 |
||||
+3 |
||||
$ |
@ -0,0 +1,40 @@
@@ -0,0 +1,40 @@
|
||||
$ git whatchanged --root master |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
:100644 100644 35d242b... 7289e35... M dir/sub |
||||
:100644 100644 01e79c3... f4615da... M file0 |
||||
:000000 100644 0000000... 7289e35... A file3 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
:100644 100644 8422d40... cead32e... M dir/sub |
||||
:000000 100644 0000000... b1e6722... A file1 |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
|
||||
:100644 100644 35d242b... 8422d40... M dir/sub |
||||
:100644 100644 01e79c3... b414108... M file0 |
||||
:100644 000000 01e79c3... 0000000... D file2 |
||||
|
||||
commit 444ac553ac7612cc88969031b02b3767fb8a353a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:00:00 2006 +0000 |
||||
|
||||
Initial |
||||
|
||||
:000000 100644 0000000... 35d242b... A dir/sub |
||||
:000000 100644 0000000... 01e79c3... A file0 |
||||
:000000 100644 0000000... 01e79c3... A file2 |
||||
$ |
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
$ git whatchanged -SF master |
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
:100644 100644 8422d40... cead32e... M dir/sub |
||||
$ |
@ -0,0 +1,100 @@
@@ -0,0 +1,100 @@
|
||||
$ git whatchanged -p master |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..7289e35 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+1 |
||||
+2 |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..f4615da 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+A |
||||
+B |
||||
+C |
||||
diff --git a/file3 b/file3 |
||||
new file mode 100644 |
||||
index 0000000..7289e35 |
||||
--- /dev/null |
||||
+++ b/file3 |
||||
@@ -0,0 +1,4 @@ |
||||
+A |
||||
+B |
||||
+1 |
||||
+2 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 8422d40..cead32e 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -2,3 +2,5 @@ A |
||||
B |
||||
C |
||||
D |
||||
+E |
||||
+F |
||||
diff --git a/file1 b/file1 |
||||
new file mode 100644 |
||||
index 0000000..b1e6722 |
||||
--- /dev/null |
||||
+++ b/file1 |
||||
@@ -0,0 +1,3 @@ |
||||
+A |
||||
+B |
||||
+C |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
|
||||
diff --git a/dir/sub b/dir/sub |
||||
index 35d242b..8422d40 100644 |
||||
--- a/dir/sub |
||||
+++ b/dir/sub |
||||
@@ -1,2 +1,4 @@ |
||||
A |
||||
B |
||||
+C |
||||
+D |
||||
diff --git a/file0 b/file0 |
||||
index 01e79c3..b414108 100644 |
||||
--- a/file0 |
||||
+++ b/file0 |
||||
@@ -1,3 +1,6 @@ |
||||
1 |
||||
2 |
||||
3 |
||||
+4 |
||||
+5 |
||||
+6 |
||||
diff --git a/file2 b/file2 |
||||
deleted file mode 100644 |
||||
index 01e79c3..0000000 |
||||
--- a/file2 |
||||
+++ /dev/null |
||||
@@ -1,3 +0,0 @@ |
||||
-1 |
||||
-2 |
||||
-3 |
||||
$ |
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
$ git whatchanged master |
||||
commit c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:03:00 2006 +0000 |
||||
|
||||
Side |
||||
|
||||
:100644 100644 35d242b... 7289e35... M dir/sub |
||||
:100644 100644 01e79c3... f4615da... M file0 |
||||
:000000 100644 0000000... 7289e35... A file3 |
||||
|
||||
commit 889b315013ef9f2e2f90aa0b054b267c8a557847 |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:02:00 2006 +0000 |
||||
|
||||
Third |
||||
|
||||
:100644 100644 8422d40... cead32e... M dir/sub |
||||
:000000 100644 0000000... b1e6722... A file1 |
||||
|
||||
commit 7952a93e09bf565b5592766a438b40cd81f4846f |
||||
Author: A U Thor <author@example.com> |
||||
Date: Mon Jun 26 00:01:00 2006 +0000 |
||||
|
||||
Second |
||||
|
||||
:100644 100644 35d242b... 8422d40... M dir/sub |
||||
:100644 100644 01e79c3... b414108... M file0 |
||||
:100644 000000 01e79c3... 0000000... D file2 |
||||
$ |
Loading…
Reference in new issue