用于“svn add --all”的 SSH命令行

发布于 2024-11-29 06:28:45 字数 75 浏览 1 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夜空下最亮的亮点 2024-12-06 06:28:45

请注意,svn addgit add 不同,svn add 添加文件(和文件夹),而git add 添加新文件和对跟踪文件的修改

因此,在 SVN 中添加文件后,执行 svn commit(没有特定路径)也会提交修改。提交时无需在 SVN 中添加修改的文件。而且你还必须小心你所做的事情。

Note that svn add is different from git add in that svn add adds new files (and folders), whereas git 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.

你是暖光i 2024-12-06 06:28:45

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 by svn commit <file>.

初见 2024-12-06 06:28:45

首先,使用 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文