将主目录导入到 svn 而不添加其所有内容
我正在尝试将我的主目录中的几个文件添加到我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常的方法是将这些文件放入单独的目录(例如
${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.
我认为你可以只添加你想要的文件并忽略其余的。
并忽略其余部分,如下所示如何使用 SVN 忽略目录? (也适用于文件)
I think you can add only the files you want and ignore the rest.
And ignore the rest as seen here How do I ignore a directory with SVN? (also work for files)