Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

Added aliases for several basic commands

Changeset fdc3a3fa6270

Parent c1cc263fdc53

by Andreas Tscharner

Changes to one file · Browse files at fdc3a3fa6270 Showing diff from parent c1cc263fdc53 Diff from another changeset...

 
1
2
3
 
4
5
6
7
 
 
 
8
9
 
10
11
 
12
13
14
 
1
2
 
3
4
 
 
 
5
6
7
8
 
9
10
 
11
12
13
14
@@ -1,14 +1,14 @@
 _hgtk()  { - local cur prev opts + local cur prev opts   - COMPREPLY=() - cur="${COMP_WORDS[COMP_CWORD]}" - prev="${COMP_WORDS[COMP_CWORD-1]}" + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}"   - opts="about add annotate archive blame checkout clone commit datamine diff filter email forget grep guess hgignore history ignore init incoming log merge outgoing pull push recovery remove rename repoconfig revert rollback serve shelve status strip synch unshelve update userconfig vdiff verify version" + opts="about add annotate archive blame checkout clone commit datamine diff filter email forget grep guess hgignore history ignore init incoming log merge outgoing pull push recovery remove rename repoconfig revert rollback serve shelve status strip synch unshelve update userconfig vdiff verify version"   - COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )  }    complete -F _hgtk hgtk