我已经设置了我的环境,所以我可以推送到远程裸存储库,我使用这些命令来设置远程存储库:
$ mkdir ~/website.git && cd ~/website.git
$ git init --bare
和
$ cat > hooks/post-receive
#!/bin/sh
GIT_WORK_TREE=/var/www/website git checkout -f
$ chmod +x hooks/post-receive
在我当地的环境中:
$ git remote add web ssh://website.com/home/website.git
$ git push web +master:refs/heads/master
现在我可以使用git push web
部署到这个遥控器,一切都很好..
我的项目中有一些子模块未在远程存储库中初始化/更新...我无法在裸机上运行git submodule update
,因为它是裸的,我无法在/var/www/website
文件夹上运行它,因为它只是文件的副本而不是git repo。
答案 0 :(得分:9)
一种可能的方式可能是:
/var/www/website
设置为(非裸)repo post-receive
挂钩你的裸仓!
GIT_DIR
和GIT_WORK_TREE
设置为/var/www/website
cd /var/ww/website
git pull ~/website
git submodule update
(有点像“How do I init/update a git submodule in a working tree after pushing to a bare working directory?”)换句话说:
从裸仓库中取出而不是尝试从裸仓库中结账:非裸仓库应该能够容纳git submodule update
步骤。
示例脚本可能看起来像
#!/bin/sh
# Get the latest code
cd /path/to/bare/repo
# Set git variables
GIT_WORK_TREE=/var/www/website
GIT_DIR=/var/www/website/.git
# Go to website and pull
cd /var/www/website
git pull /path/to/bare/repo
git submodule update --init --recursive
# Run additional build stuff here
答案 1 :(得分:9)
我想出了另一个看起来很干净的解决方案。只需给git执行子模块所需的所有信息:
$ cd /path/to/your/git_work_tree
$ git --git-dir=/path/to/your/bare_repo.git --work-tree=. submodule init
$ git --git-dir=/path/to/your/bare_repo.git --work-tree=. submodule update
答案 2 :(得分:6)
两天前,当我遇到同样的问题时,我偶然发现了这个帖子。在最终得出一个漂亮,整洁的解决方案之后,我在这里写了一篇关于它的文章:
Git push with submodules: a how-to guide
我意识到,如果我要push
转到一个裸仓库,只使用post-receive
到pull
进入非裸仓库,我不妨保留它简单且push
直接到非裸存储库。这是一个明显的案例,其中只推动裸仓库的“最佳实践”只会增加复杂性。
如果链接腐烂,我会在这里粘贴我的解决方案,跳过我遇到的所有相同的问题,我确信你会这样做。
首先,让我们创建一个通用 post-receive
钩子,我不需要在每个存储库的基础上进行更改:
[aaron@aaronadams]$ cat > /usr/local/share/git-core/templates/hooks/post-receive.sample
#!/bin/sh
#
# An example hook script to update the working tree, including its
# submodules, after receiving a push.
#
# This hook requires core.worktree to be explicitly set, and
# receive.denyCurrentBranch to be set to false.
#
# To enable this hook, rename this file to "post-receive".
# Read standard input or hook will fail
while read oldrev newrev refname
do
:
done
# Unset GIT_DIR or the universe will implode
unset GIT_DIR
# Change directory to the working tree; exit on failure
cd `git config --get core.worktree` || exit
# Force checkout
git checkout --force
# Force update submodules
git submodule update --init --recursive --force
[aaron@aaronadams]$ chmod +x /usr/local/share/git-core/templates/hooks/post-receive.sample
现在让我们继续并打破所有规则。
我们将在我们的网站目录中初始化一个非裸 Git存储库;确保它可以从git push
收到;显式将其工作树设置为其父目录;并启用我们刚创建的钩子。
[aaron@aaronadams]$ cd /var/www/vhosts/aaronadams.ca/sites/staging.aaronadams.ca
[aaron@aaronadams]$ git init && git config --bool receive.denyCurrentBranch false && git config --path core.worktree ../ && mv .git/hooks/post-receive.sample .git/hooks/post-receive
Initialized empty Git repository in /var/www/vhosts/aaronadams.ca/sites/staging.aaronadams.ca/.git/
最后,在我们的本地计算机上,我们将更改我们的遥控器以反映新存储库的位置,并推送。
[aaron@aaronadams]$ git remote set-url staging aaron@aaronadams.ca:sites/staging.aaronadams.ca
[aaron@aaronadams]$ git push staging master
remote: Submodule 'codeigniter' (git://github.com/EllisLab/CodeIgniter.git) registered for path 'codeigniter'
remote: Cloning into 'codeigniter'...
remote: Submodule path 'codeigniter': checked out 'fd24adf31255822d6aa9a5d2dce9010ad2ee4cf0'
To aaron@aaronadams.ca:sites/staging.aaronadams.ca
* [new branch] master -> master
神圣的废话,它有效!
此方法不仅与子模块兼容,还需要一个命令来设置新的远程存储库(好的,它包含四个命令)。它还将存储库和工作树保持在同一个位置;并且我们的配置或挂钩文件中没有绝对路径,现在它也是完全可移植。
我希望这个答案可以帮助别人,就像过去两天其他人的Stack Exchange帖子一样帮助我!