Intellij无法记住我的git凭据

e7arh2l6  于 2023-11-15  发布在  Git
关注(0)|答案(3)|浏览(135)

我使用Git Bash桌面应用程序与Intellij ide和我们的项目git存储库托管在TFS。我需要帮助修复或禁用自动git获取intellij的想法。因为它一直要求我输入密码每15-20分钟,但我可以看到凭证存储在windows凭据管理器保险库下的git。
x1c 0d1x的数据


ijxebb2r

ijxebb2r1#

只需遵循这些步骤,您将立即设置您的ssh密钥:
生成一个新的ssh密钥(如果您已经有一个密钥,则跳过此步骤)

# open git bash or terminal 
ssh-keygen

字符串

  • home/.ssh directory(或Windows下的Users/.ssh)中设置密钥后,打开它并复制内容
# get the ssh-key content
cat ~/.ssh/id_rsa.pub

  • 将此密钥复制到您的git lab帐户
  • 获取存储库的ssh URL并在IntelliJ中更新它

现在你可以用ssh代替https了

kmbjn2e3

kmbjn2e32#

checkout 此线程,IntelliJ可能已禁用本机密钥链中的保存密码功能。设置|外观和行为|系统设置|密码。确保IDE已配置为将密码保存在Keychain或KeePass. https://intellij-support.jetbrains.com/hc/en-us/community/posts/360008320219-GitHub-Token-not-saved-

bkhjykvo

bkhjykvo3#

我也面临着同样的问题,在IntelliJ Settings > Version Control > Git中启用Use credential helper(在图像的底部)为我解决了这个问题


的数据

相关问题