Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are all the short codes for svn commands?

I know that co can be used as shorthand for checkout, and through experimentation I have found di is short for diff and st short for status. Are there shortened codes for all svn commands? If so what are they?

like image 369
fredley Avatar asked Jan 24 '12 15:01

fredley


People also ask

What does M mean in svn?

'M' Item has been modified. 'R' Item has been replaced in your working copy. This means the file was scheduled for deletion, and then a new file with the same name was scheduled for addition in its place.

What is svn up command?

The SVN update Command. The svn update command lets you refresh your locally checked out repository with any changes in the repository HEAD on the server. It also tells you what has been changed, added, deleted. If a change has been made to a file you have also changed locally, svn will try to merge those changes.


1 Answers

Typing svn help shows a list of all available commands and their shortcuts:

Available subcommands:
(Only those with 2-letter short-codes listed)

   changelist (cl)
   checkout   (co)
   commit     (ci)
   copy       (cp)
   delete     (rm)
   diff       (di)
   help       (h)
   list       (ls)
   move       (mv)
   propdel    (pd)
   propedit   (pe)
   propget    (pg)
   proplist   (pl)
   propset    (ps)
   status     (st)
   switch     (sw)
   update     (up)
like image 157
Linus Kleen Avatar answered Oct 06 '22 19:10

Linus Kleen