用于“svn add --all”的 SSH命令行
使用 Git 时,我通常使用 git add --all ,然后提交。我通过终端使用 SSH SVN,我想添加一个文件,但是命令是什么?
When using Git I usually use git add --all
and then commit. I'm using SSH SVN through a terminal, and I want to add a file, but what is the command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请注意,
svn add
与git add
不同,svn add
添加新文件(和文件夹),而git add
添加新文件和对跟踪文件的修改。因此,在 SVN 中添加文件后,执行 svn commit(没有特定路径)也会提交修改。提交时无需在 SVN 中添加修改的文件。而且你还必须小心你所做的事情。
Note that
svn add
is different fromgit add
in thatsvn add
adds new files (and folders), whereasgit add
adds new files and modifications to tracked files.So after adding files in SVN, doing a
svn commit
(without a specific path) will commit the modifications as well. There is no need to add modified files in SVN for a commit. And you also have to be careful about exactly what you are committing.svn add <文件>
;然后该文件被“标记”为添加。下次提交时,该文件将被添加到存储库中。因此,如果您只想将一个文件添加到存储库中,请使用
svn add
,然后使用svn commit
。svn add <file>
; the file then is "marked" for addition. Next time you commit, the file will be added to the repository.So if you want to only add one file into the repository, use
svn add <file>
followed bysvn commit <file>
.首先,使用 svn add filename 将文件添加到存储库。然后你实际上必须将其提交到服务器,我相信你知道该怎么做。 (
svn 提交文件名
)First, add the file to the repository using
svn add filename
. Then you actually have to commit it to the server, which I'm sure you know how to do. (svn commit filename
)