11

首先,大局:我正在尝试为我正在运行的 Redmine / Gitolite 服务器编写一个 git post-receive 脚本。根据各种建议,我正在为 Redmine 创建一个裸露的本地存储库以供读取,并且我正在 Gitolite 上设置一个接收后脚本以将更改推送到 Redmine 存储库。

但是,我对 Git 非常不熟悉,所以我什至无法在这里做一个简单的任务>_<。我想如果我弄清楚这一点,我应该能够编写上面的脚本。设置我的测试仓库后,我创建了两个仓库作为测试。

(“Central Repo”是一个 Gitolite 存储库,位于 git@localhost:testing)

cd /tmp
mkdir /tmp/test
$ git clone git@localhost:testing
$ git clone git@localhost:testing testing2
$ git clone git@localhost:testing --bare

现在当我运行 ls 时:

$ ls
testing  testing2  testing.git

现在,我更改了 testing2 中的测试文件,然后将更改推送到中央存储库。

$ cd testing2
$ echo 'testline' >> test && git commit --allow-empty-message -a -m '' && git push 

正如预期的那样,如果我在“测试”文件夹上运行“git pull”,一切都会按预期工作。

$ cd testing
$ git pull
remote: Counting objects: 5, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
From localhost:testing
   3242dba..a1ca5ba  master     -> origin/master
Updating 3242dba..a1ca5ba
Fast-forward
 test |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
$ diff ./test ../testing2/test
$

如最后一个“diff”所示,“testing”目录和“testing2”目录完全按预期工作。“git pull”命令同步两个目录。

但是,如果我 cd 进入 testing.git(又名:裸仓库), git fetch / git reset --soft 无法将裸仓库更新到最新版本。

$ ls
branches  config  description  HEAD  hooks  info  objects  packed-refs  refs
$ git fetch
remote: Counting objects: 5, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
From localhost:testing
 * branch            HEAD       -> FETCH_HEAD
$ git reset --soft
$ cd ..
$ git clone ./testing.git testing3
Cloning into testing3...
done.
$ cd testing3
$ diff test ../testing2/test
5a6
> testline

正如您从上一个示例中看到的,裸存储库未能更新,并且两个文件之间存在某种差异。我做错什么了?

提前致谢

4

1 回答 1

26

您的 fetch 没有更新master分支,只是FETCH_HEAD(请参阅“ Git 中的含义是什么?FETCH_HEAD)。

如“我如何拉到裸存储库? ”中所述,您应该执行以下操作:

git fetch origin master:master

或者,对于所有分支

git fetch origin +refs/heads/*:refs/heads/*

Colin D Bennett补充道:

如果您想定期获取这些,您应该考虑:

git config remote.origin.fetch +refs/heads/*:refs/heads/*

这将允许您键入git fetch以将您的分支与遥控器同步。
请注意,这仅在不应编辑本地分支的裸存储库中才有意义

于 2012-05-22T07:19:25.787 回答