@@ -1486,6 +1486,8 @@ __git_diff_common_options="--stat --numstat --shortstat --summary
1486
1486
--dirstat-by-file= --cumulative
1487
1487
--diff-algorithm=
1488
1488
--submodule --submodule= --ignore-submodules
1489
+ --indent-heuristic --no-indent-heuristic
1490
+ --textconv --no-textconv
1489
1491
"
1490
1492
1491
1493
_git_diff ()
@@ -1794,23 +1796,30 @@ _git_log ()
1794
1796
__gitcomp " $__git_diff_submodule_formats " " " " ${cur## --submodule=} "
1795
1797
return
1796
1798
;;
1799
+ --no-walk=* )
1800
+ __gitcomp " sorted unsorted" " " " ${cur## --no-walk=} "
1801
+ return
1802
+ ;;
1797
1803
--* )
1798
1804
__gitcomp "
1799
1805
$__git_log_common_options
1800
1806
$__git_log_shortlog_options
1801
1807
$__git_log_gitk_options
1802
1808
--root --topo-order --date-order --reverse
1803
1809
--follow --full-diff
1804
- --abbrev-commit --abbrev=
1810
+ --abbrev-commit --no-abbrev-commit -- abbrev=
1805
1811
--relative-date --date=
1806
1812
--pretty= --format= --oneline
1807
1813
--show-signature
1808
1814
--cherry-mark
1809
1815
--cherry-pick
1810
1816
--graph
1811
- --decorate --decorate=
1817
+ --decorate --decorate= --no-decorate
1812
1818
--walk-reflogs
1819
+ --no-walk --no-walk= --do-walk
1813
1820
--parents --children
1821
+ --expand-tabs --expand-tabs= --no-expand-tabs
1822
+ --patch
1814
1823
$merge
1815
1824
$__git_diff_common_options
1816
1825
--pickaxe-all --pickaxe-regex
@@ -2683,8 +2692,9 @@ _git_show ()
2683
2692
return
2684
2693
;;
2685
2694
--* )
2686
- __gitcomp " --pretty= --format= --abbrev-commit --oneline
2687
- --show-signature
2695
+ __gitcomp " --pretty= --format= --abbrev-commit --no-abbrev-commit
2696
+ --oneline --show-signature --patch
2697
+ --expand-tabs --expand-tabs= --no-expand-tabs
2688
2698
$__git_diff_common_options
2689
2699
"
2690
2700
return
0 commit comments