gpt4 book ai didi

git - git-svn 的钩子(Hook)

转载 作者:IT王子 更新时间:2023-10-29 00:43:06 26 4
gpt4 key购买 nike

我可以为从/到 git-svn 托管存储库“pull ”/“推”设置 Hook 吗?

情况是我在 Google Code 上有一个项目宿主,并使用 git 来管理本地工作副本。我想设置一些 Hook ,以便在使用 git svn fetchgit svn dcommit 从 SVN 存储库中 checkin / checkout 数据时,我可以对提交做一些修改。由于我没有托管 SVN 存储库,因此无法在服务器端设置 Hook 。

有没有我可以使用的钩子(Hook)?或者有没有办法“标记”一个普通分支,以便该分支上的 git pullgit push 将改为从 SVN 存储库 checkin / checkout ,因此可以使用普通的 git 钩子(Hook)吗?

提前致谢。

最佳答案

this thread 所示,您可以在 Subversion 端设置 Hook ,它实际上可以根据某些条件拒绝您的 git svn dcommit

但是如果您需要在 Git 端使用 git hooks,我建议设置一个中间件 bare Git repository (裸露以便于推/pull )。
在那个裸仓库上,你可以有任何你需要的钩子(Hook),如“how do I deploy multiple branches to different directories via git push?”所示(不是关于 svn,而是在这里详细说明额外仓库的类似设置)

  • 如果中间仓库验证了您的推送,它可能会触发 git svn dcommit
  • 它还可以根据 git fetch 请求触发 git svn fetch 并验证它,然后再允许您自己的 git fetch前进。

(2 年后)

David Southerhis blog 中提出解决方案(2012 年 4 月)

The solution I have is to have a repository with split heads. Most of the time, the intermediate repository will have an empty working directory. When a push happens, it will check out master, verify the build, and push to svn, before returning to the empty branch.

We’re going to set up an intermediate git repo with two branches.

  • master will still point to the SVN repo,
  • 新分支 stage 将使我们保持工作目录清洁并与下游更改同步。

查看 his gist .

关于git - git-svn 的钩子(Hook),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2014422/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com