gpt4 book ai didi

windows - Jenkins 没有从 Windows 凭据管理器中检测到 GIT 凭据

转载 作者:可可西里 更新时间:2023-11-01 11:07:11 33 4
gpt4 key购买 nike

我有 2 个 GIT 存储库副本,我们称它们为“来源”“备份”。我想要实现的是以下内容。我的团队不断将他们的更改推送并同步到“origin”,但是我想确保我在不同的地理位置有一个 “origin” 的副本,它将服务作为副本,以防万一发生火灾,毁坏了我办公室的一切。为了实现这一点,我在云中保留了一份相同的 git 存储库副本。

现在,我正在结合使用 Jenkins 和 Windows 批处理脚本,试图找出一种可以使这些存储库保持同步的方法。批处理脚本将负责实际的同步操作,Jenkins 将确保同步操作定期运行。副本被命名为“backup”(您可能已经猜到了)。

问题是当我直接从命令提示符运行批处理脚本时,它完全按照我的意愿执行;但是当我尝试通过 Jenkins 作业执行批处理脚本时,它一直在等待 “backup” 存储库的用户名和密码。 “备份” 存储库的凭据已存储在 Windows 凭据管理器中,批处理脚本在直接执行时能够使用凭据,但不知何故,当我尝试通过 Jenkins 执行它时,情况并非如此.

我试过谷歌搜索,所以我什至做了很多搜索,看看我是否能在 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

不言而喻,非常感谢任何帮助。

干杯。

最佳答案

终于找到解决办法了。感谢David Ruhmann .大卫在他对问题的评论中提到的解决方案是转到 Windows 服务管理器并将 “登录为” 列的值从 “本地系统” 更改到您用于从命令提示符运行批处理脚本的 Windows 帐户。在我的例子中,因为 windows 的登录用户被称为 “BOB”,将 Local System 值更改为 BOB 并为此用户指定登录密码服务经理成功了。

还有一件事要记住;要使更改生效,您必须重新启动 Jenkins 服务。

关于windows - Jenkins 没有从 Windows 凭据管理器中检测到 GIT 凭据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28366424/

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