179

我想在一行中执行此命令:

git pull && [my passphrase]

怎么做?

4

10 回答 10

196

这不完全是您所要求的,但对于 http(s):

  • 您可以将密码放入 .netrc 文件(Windows 上的 _netrc)。从那里它将被自动拾取。它将以 600 权限进入您的主文件夹。
  • 您也可以只克隆 repo ,https://user:pass@domain/repo但这并不是真正推荐的,因为它会在很多地方显示您的用户/通行证......
  • 一个新选项是使用凭证助手。请注意,凭据将使用标准凭据帮助程序以明文形式存储在本地配置中。带有 wincred 的 credential-helper 也可以在 Windows 上使用。

凭证助手的使用示例

  • git config credential.helper store- 无限期地存储凭据。
  • git config credential.helper 'cache --timeout=3600'- 存储 60 分钟

对于基于 ssh 的访问,您将使用 ssh 代理,该代理将在需要时提供 ssh 密钥。这将需要在您的计算机上生成密钥,将公钥存储在远程服务器上并将私钥添加到相关的密钥库中。

于 2012-07-16T14:15:54.980 回答
167

我找到了一种在命令行上为 https 连接提供凭据的方法。您只需要指定 git pull 的完整 URL 并在其中包含凭据:

git pull https://username:password@mygithost.com/my/repository

您之前不需要使用凭据克隆存储库,这意味着您的凭据不会以.git/config. (但请确保您的 shell 不会背叛您并将命令行存储在历史文件中。)

于 2015-08-05T14:54:33.653 回答
50

没有直接回答这个问题,但是我在寻找一种方法时发现了这个问题,基本上,每次我拉远程服务器时都不会重新输入密码

好吧,git允许您在有限的时间内缓存您的凭据。它是可定制的git config,这个页面很好地解释了它:

https://help.github.com/articles/caching-your-github-password-in-git/#platform-linux

在终端中,运行:

$ git config --global credential.helper cache
# Set git to use the credential memory cache

要自定义缓存超时,您可以执行以下操作:

$ git config --global credential.helper 'cache --timeout=3600'
# Set the cache to timeout after 1 hour (setting is in seconds)

然后,您的凭据将在请求的时间内存储在内存中。

于 2016-04-29T23:39:39.377 回答
13

如果密码中没有@,则下面的 cmd 将起作用: git pull https://username:pass@word@mygithost.com/my/repository 如果密码中有@,则将其替换为 %40,如下所示: git pull https://username:pass%40word@mygithost.com/my/repository

于 2020-07-09T17:39:40.103 回答
12

使用凭证助手命令行选项

git -c credential.helper='!f() { echo "password=mysecretpassword"; }; f' fetch origin
于 2020-11-18T20:05:32.547 回答
9

我刚刚经历了这个,所以提供了我的答案,因为我最终使用了Gitlab 访问令牌,尽管有些人可能需要Github 访问令牌

我更喜欢使用 SSH,但有一个 gitlab 错误阻止了它。将我的密码放在 .netrc 或 URL 中并不理想。凭据管理器需要在服务器重新启动时重新启动,这并不理想。

因此我选择了一个可以像这样使用的访问令牌:git clone https://<username>:<accessToken>@gitlab.com/ownerName/projectName.git

访问令牌与 url 一起存储,因此这并不安全,但它比使用 username:password 更安全,因为访问令牌可以限制为某些操作并且可以轻松撤销。

一旦它被克隆下来(或手动更新 URL),您的所有 git 请求都将使用访问令牌,因为它存储在 URL 中。

如果您希望更新已克隆的存储库,这些命令可能会有所帮助:

git remote show origin

git remote remove origin

git remote add origin https://<username>:<accessToken>@gitlab.com/ownerName/projectName.git

编辑:一定要检查下面的评论。我添加了 2 个重要说明。

于 2021-03-12T19:45:09.273 回答
8

您可以只使用用户名而无需使用密码,因为密码将在 git bash 中提示。

git pull https://username@github.com/username/myrepo
于 2020-08-27T12:10:06.093 回答
5

请注意,git 凭证助手“存储”将存储未加密密码的方式随 Git 2.5+(2014 年第二季度)发生变化。
请参阅Junio C Hamano ( )提交 17c7f4dgitster

credential-xdg

调整凭证助手的示例“ store”后端,以在指定时遵守 XDG 配置文件位置。

医生现在说:

如果未指定:

  • 将从~/.git-credentials和中搜索凭据$XDG_CONFIG_HOME/git/credentials,并且
  • ~/.git-credentials如果凭据存在,或者$XDG_CONFIG_HOME/git/credentials如果存在而前者不存在,则将写入凭据。
于 2015-05-12T08:15:17.077 回答
4

在搜索 Google 和 stackoverflow 一段时间后,我没有找到问题的答案,所以我想在这里分享我的解决方案。

git config --global credential.helper "/bin/bash /git_creds.sh"
echo '#!/bin/bash' > /git_creds.sh
echo "sleep 1" >> /git_creds.sh
echo "echo username=$SERVICE_USER" >> /git_creds.sh
echo "echo password=$SERVICE_PASS" >> /git_creds.sh

# to test it
git clone https://my-scm-provider.com/project.git

我也是为 Windows 做的。完整答案在这里

于 2020-12-07T15:40:19.213 回答
3

如果您希望在 Gitlab ( gitlab-ci.yml) 上的 CI/CD 脚本中执行此操作。你可以使用

git pull $CI_REPOSITORY_URL

这将转化为:

git pull https://gitlab-ci-token:[MASKED]@gitlab.com/gitlab-examples/ci-debug-trace.gi

而且我很确定它使用的令牌是临时/每个作业令牌 - 所以这种方法的安全漏洞大大减少了。

于 2020-10-19T15:52:39.723 回答