我有 2 个 GIT 存储库副本,我们称它们为"origin"和"backup"。我想要实现的是以下。我的团队不断推动和同步他们对"origin"的更改,但是我想确保我在不同的地理位置有一份"origin"的副本,这将作为副本,以防万一发生火灾,破坏我办公室里的一切。为了实现这一点,我在云上保留了我的 git repo 的相同副本。
现在使用 Jenkins 和 Windows 批处理脚本的组合,我试图找出一种可以使这些存储库保持同步的方法。批处理脚本将负责实际的同步操作,Jenkins 将确保同步操作定期运行。复制的副本被命名为“备份”(您可能已经猜到了)。
问题是当我直接从命令提示符运行批处理脚本时,它完全按照我的意愿执行;但是当我尝试通过 Jenkins 作业执行批处理脚本时,它一直在等待“备份”存储库的用户名和密码。“备份”存储库的凭据已经存储在 Windows 凭据管理器中,并且批处理脚本在直接执行时能够使用凭据,但不知何故,当我尝试通过 Jenkins 执行它时,情况并非如此。
我试过谷歌搜索,搜索所以甚至做了很多搜索,看看我是否可以在詹金斯论坛中找到一些东西,但到目前为止我还没有找到任何有用的东西。
我不确定这是否有用,但下面是我的批处理脚本供参考。
@echo OFF
pushd K:
pushd "K:\my-git-workspace\mygit-repo"
echo Pulling "master" from origin
git pull origin master
echo Pulling "master" from backup
git pull backup master
echo Pushing "master" to backup
git push backup master
echo Pushing "master" to origin
git push origin master
echo Pulling all tags from origin
git pull --tags origin
echo Pulling all tags from backup
git pull --tags origin
echo Pushing all tags to backup
git push --tags backup
echo Pushing all tags to origin
git push --tags origin
popd
这是我从 Windows 命令提示符看到的 GIT 配置。(我已将 user.name 和 user.email 替换为虚拟值)
core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
user.email=myemail@domain.com
user.name=My Name
credential.helper=wincred
这是我从 Jenkins 运行 (git config -l) 时得到的 GIT 配置
core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
user.email=myemail@domain.com
user.name=My Name
credential.helper=wincred
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
core.hidedotfiles=dotGitOnly
remote.origin.url=//networkrepo/git/repo
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
remote.backup.url=http://cloud-hosted-git-repo/repo.git
remote.backup.fetch=+refs/heads/*:refs/remotes/backup/*
gui.wmstate=zoomed
gui.geometry=584x210+321+316 304 192
credential.helper=store
user.email=myemail@domain.com
user.name=My Name
不用说,非常感谢任何帮助。
干杯。