在我的另一个问题中,Issue in automatic executing post-commit in git hook to sync local and remote directory,
我可以使用git hook来调用post-receive
,以便工作目录与git bare repository相同。
unset GIT_INDEX_FILE
git --work-tree=/home/ubuntu/dumb --git-dir=/home/ubuntu/git/dumb.git checkout -f
在推送工作目录后,但索引未更新。 例如,在我的本地机器中,我添加一行“???”在hello.txt中。我添加/提交/推送更改以自动更新服务器工作git目录中的hello.txt。
diff --git a/hello.txt b/hello.txt
index 3ab3c7a..b63ad40 100644
--- a/hello.txt
+++ b/hello.txt
@@ -4,3 +4,5 @@ Again, helloooo, world?
Hello, world? Automatically?
How about this?
+
+????
我尝试从服务器的工作目录添加/ commit / push来获取此错误。
ubuntu@ip-172-31-63-19 dumb> git push
To /home/ubuntu/git/dumb.git/
! [rejected] master -> master (fetch first)
error: failed to push some refs to '/home/ubuntu/git/dumb.git/'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
可能有什么问题?如何同步阶段(索引)和工作目录?
从What's the difference between "git reset" and "git checkout"?开始,我可以在工作目录中运行git reset --hard
来进行同步,但推送的更改会被覆盖。然后,使用git push
,我可以获得更新版本,但我需要合并。
这是来自服务器工作目录的git log --pretty=oneline
。
86461a03f7d46bbc90d1ef47ae3a21774848407f Merge branch 'master' of /home/ubuntu/git/dumb
049111edb0e612ec3bf364ea01423cdea8575560 1234
f506be37c3cd6d24ec727ebfb551c9d5dbd780b5 ?*
ca5a0f5efb90788c3e1669d192d3fb333fdbcd72 ?
这是来自本地目录
049111edb0e612ec3bf364ea01423cdea8575560 1234
f506be37c3cd6d24ec727ebfb551c9d5dbd780b5 ?*
ca5a0f5efb90788c3e1669d192d3fb333fdbcd72 ?
答案 0 :(得分:0)
问题在于,即使工作目录包含服务器的最新更新,也不会更新本地git目录中的索引和历史记录。
我不认为这是最好的解决方案,但在服务器的工作目录中,我可以同步到最新的更新。
它存储工作目录和索引/历史记录中的更改以防止冲突,然后拉动同步并丢弃存储。现在,我可以自动从我的本地目录同步到服务器的工作目录,我可以不时更新更改。
虽然我期待一个完整的解决方案,但不是这个临时解决方案。