-
- Downloads
Merge branch 'js/range-diff'
"git tbdiff" that lets us compare individual patches in two iterations of a topic has been rewritten and made into a built-in command. * js/range-diff: (21 commits) range-diff: use dim/bold cues to improve dual color mode range-diff: make --dual-color the default mode range-diff: left-pad patch numbers completion: support `git range-diff` range-diff: populate the man page range-diff --dual-color: skip white-space warnings range-diff: offer to dual-color the diffs diff: add an internal option to dual-color diffs of diffs color: add the meta color GIT_COLOR_REVERSE range-diff: use color for the commit pairs range-diff: add tests range-diff: do not show "function names" in hunk headers range-diff: adjust the output of the commit pairs range-diff: suppress the diff headers range-diff: indent the diffs just like tbdiff range-diff: right-trim commit messages range-diff: also show the diff between patches range-diff: improve the order of the shown commits range-diff: first rudimentary implementation Introduce `range-diff` to compare iterations of a topic branch ...
No related branches found
No related tags found
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- Documentation/config.txt 4 additions, 2 deletionsDocumentation/config.txt
- Documentation/git-range-diff.txt 252 additions, 0 deletionsDocumentation/git-range-diff.txt
- Makefile 3 additions, 0 deletionsMakefile
- builtin.h 1 addition, 0 deletionsbuiltin.h
- builtin/range-diff.c 116 additions, 0 deletionsbuiltin/range-diff.c
- color.h 7 additions, 0 deletionscolor.h
- command-list.txt 1 addition, 0 deletionscommand-list.txt
- contrib/completion/git-completion.bash 14 additions, 0 deletionscontrib/completion/git-completion.bash
- diff.c 89 additions, 16 deletionsdiff.c
- diff.h 9 additions, 1 deletiondiff.h
- git.c 1 addition, 0 deletionsgit.c
- linear-assignment.c 201 additions, 0 deletionslinear-assignment.c
- linear-assignment.h 22 additions, 0 deletionslinear-assignment.h
- range-diff.c 435 additions, 0 deletionsrange-diff.c
- range-diff.h 9 additions, 0 deletionsrange-diff.h
- t/.gitattributes 1 addition, 0 deletionst/.gitattributes
- t/t3206-range-diff.sh 145 additions, 0 deletionst/t3206-range-diff.sh
- t/t3206/history.export 604 additions, 0 deletionst/t3206/history.export
Documentation/git-range-diff.txt
0 → 100644
builtin/range-diff.c
0 → 100644
linear-assignment.c
0 → 100644
linear-assignment.h
0 → 100644
range-diff.c
0 → 100644
range-diff.h
0 → 100644
t/t3206-range-diff.sh
0 → 100755
t/t3206/history.export
0 → 100644
Please register or sign in to comment