We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d7805 commit e1c1a06Copy full SHA for e1c1a06
contrib/completion/git-completion.bash
@@ -1798,6 +1798,11 @@ _git_remote ()
1798
esac
1799
}
1800
1801
+_git_replace ()
1802
+{
1803
+ __gitcomp "$(__git_refs)"
1804
+}
1805
+
1806
_git_reset ()
1807
{
1808
__git_has_doubledash && return
@@ -2166,6 +2171,7 @@ _git ()
2166
2171
push) _git_push ;;
2167
2172
rebase) _git_rebase ;;
2168
2173
remote) _git_remote ;;
2174
+ replace) _git_replace ;;
2169
2175
reset) _git_reset ;;
2170
2176
revert) _git_revert ;;
2177
rm) _git_rm ;;
0 commit comments