aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2015-12-11 10:42:19 +0800
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2015-12-11 10:42:19 +0800
commita0eef2663a6871673d3d9a9535fde704bd92c952 (patch)
tree7b8ae10afbe7130f11cbd9a9d9c3867a5771088d /share
parentf5dfebb6a3fbd828eae70e3f18b49d673e1c8380 (diff)
git completions: add missing description flags
Fixes syntax error introduced in 4280df3aa2dab.
Diffstat (limited to 'share')
-rw-r--r--share/completions/git.fish12
1 files changed, 6 insertions, 6 deletions
diff --git a/share/completions/git.fish b/share/completions/git.fish
index 850c7caa..076a54a9 100644
--- a/share/completions/git.fish
+++ b/share/completions/git.fish
@@ -296,12 +296,12 @@ complete -f -c git -n '__fish_git_using_command clone' -l no-hardlinks -d 'Copy
complete -f -c git -n '__fish_git_using_command clone' -s q -l quiet -d 'Operate quietly and do not report progress'
complete -f -c git -n '__fish_git_using_command clone' -s v -l verbose -d 'Provide more information on what is going on'
complete -f -c git -n '__fish_git_using_command clone' -s n -l no-checkout -d 'No checkout of HEAD is performed after the clone is complete'
-complete -f -c git -n '__fish_git_using_command clone' -l bare 'Make a bare Git repository'
-complete -f -c git -n '__fish_git_using_command clone' -l mirror 'Set up a mirror of the source repository'
-complete -f -c git -n '__fish_git_using_command clone' -s o -l origin 'Use a specific name of the remote instead of the default'
-complete -f -c git -n '__fish_git_using_command clone' -s b -l branch 'Use a specific branch instead of the one used by the cloned repository'
-complete -f -c git -n '__fish_git_using_command clone' -l depth 'Truncate the history to a specified number of revisions'
-complete -f -c git -n '__fish_git_using_command clone' -l recursive 'Initialize all submodules within the cloned repository'
+complete -f -c git -n '__fish_git_using_command clone' -l bare -d 'Make a bare Git repository'
+complete -f -c git -n '__fish_git_using_command clone' -l mirror -d 'Set up a mirror of the source repository'
+complete -f -c git -n '__fish_git_using_command clone' -s o -l origin -d 'Use a specific name of the remote instead of the default'
+complete -f -c git -n '__fish_git_using_command clone' -s b -l branch -d 'Use a specific branch instead of the one used by the cloned repository'
+complete -f -c git -n '__fish_git_using_command clone' -l depth -d 'Truncate the history to a specified number of revisions'
+complete -f -c git -n '__fish_git_using_command clone' -l recursive -d 'Initialize all submodules within the cloned repository'
### commit
complete -c git -n '__fish_git_needs_command' -a commit -d 'Record changes to the repository'