在 netbeans 中使用 git-svn

发布于 2024-11-30 01:24:57 字数 66 浏览 1 评论 0 原文

有没有办法在 Netbeans 中使用 git-svn。我目前正在开发一个使用svn的项目,我想至少在本地使用git。

Is there any way to use git-svn from within Netbeans. I'm currently working on a project that uses svn, and I'd like to at least use git locally.

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

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

发布评论

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

评论(1

浊酒尽余欢 2024-12-07 01:24:57

NetBeans 目前不支持 git-svn。您仍然可以使用 NetBeans 作为本地 Git 存储库,但您必须自己运行 git svn rebase 和 git svn dcommit。

另一种选择是在服务器端使用 SubGit

  1. 将 SubGit 安装到您的 Subversion 存储库中,请参阅 文档
  2. 设置对创建的 Git 存储库的远程访问,例如使用 git-http-backend
  3. 之后,您可以通过 NetBeans 克隆该 Git 存储库,并像使用通常的 Git 存储库一样使用它。
  4. 每次推送时,SubGit 都会自动将您的 Git 提交转换为 Subversion 修订版本。
  5. 当有人向您的 Subversion 存储库提交更改时,SubGit 会自动将它们转换为新的 Git 提交。所以,你可以用正常的拉力来获得它们。

希望有帮助。

NetBeans currently does not support git-svn. You still may use NetBeans for local Git repository, but you have to run git svn rebase and git svn dcommit yourself.

Another option is to use SubGit on a server-side:

  1. Install SubGit into your Subversion repository, see documentation.
  2. Setup remote access to created Git repository, e.g. using git-http-backend.
  3. After that you may clone that Git repository via NetBeans and work with it as with usual Git repository.
  4. On every push SubGit automatically converts your Git commits into Subversion revisions.
  5. When someone commits changes to your Subversion repository, SubGit automatically converts them into new Git commits. So, you get them with a normal pull.

Hope that helps.

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