将主目录导入到 svn 而不添加其所有内容

发布于 2025-01-02 12:09:21 字数 141 浏览 0 评论 0原文

我正在尝试将我的主目录中的几个文件添加到我的 svn 存储库,即 .vimrc.bashrc。我该怎么做呢?我不想导入主目录中的所有内容,因为那样文件太多,我只想从主目录添加几个文件。

提前致谢

I'm trying to add a couple of files in my home directory to my svn repository, namely .vimrc and .bashrc. How do I go about doing this? I don't want to import everything in my home directory because that would be too many files, I only want to add a couple of files from my home directory.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

滥情哥ㄟ 2025-01-09 12:09:21

通常的方法是将这些文件放入单独的目录(例如 ${HOME}/dotfiles)并将它们符号链接到您的 ${HOME}例如 ln -s ${HOME}/dotfiles/vimrc ${HOME}/.vimrc)。

然后您可以将 dotfiles 目录置于版本控制之下。

The usual way is to put these files into a separate directory (e.g. ${HOME}/dotfiles) and symlink these into your ${HOME} (e.g. ln -s ${HOME}/dotfiles/vimrc ${HOME}/.vimrc).

Then you can put your dotfiles directory under version control.

情域 2025-01-09 12:09:21

我认为你可以只添加你想要的文件并忽略其余的。

svn add filename

并忽略其余部分,如下所示如何使用 SVN 忽略目录? (也适用于文件)

I think you can add only the files you want and ignore the rest.

svn add filename

And ignore the rest as seen here How do I ignore a directory with SVN? (also work for files)

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