SVN CI和SVN Commit有什么区别吗?

9
这两个命令有区别吗:
svn ci -m "checking in."

and
svn commit -m "checking in."
2个回答

8

命令svn help会列出commit作为命令,而ci是该命令的快捷方式。它们是等价的。

$ svn help
usage: svn <subcommand> [options] [args]
Subversion command-line client, version 1.8.11.
Type 'svn help <subcommand>' for help on a specific subcommand.
Type 'svn --version' to see the program version and RA modules
  or 'svn --version --quiet' to see just the version number.

Most subcommands take file and/or directory arguments, recursing
on the directories.  If no arguments are supplied to such a
command, it recurses on the current directory (inclusive) by default.

Available subcommands:
   add
   blame (praise, annotate, ann)
   cat
   changelist (cl)
   checkout (co)
   cleanup
   commit (ci)
   copy (cp)
   ...

5

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接