如何将gitlab-token添加到Sourcetree?
我尝试将文件提交给gitlab存储库,但我收到
git -c diff.mnemonicprefix = false -c core.quotepath = false -No-Optional-Locks push -v-Tags Origin Main:Main Remote:不允许您将代码推入此项目。致命:无法进入 'https://gitlab.server.com/edna/myproject.git/':请求的URL 返回错误:403推到
因此,我从Gitlab操作员那里获得了个人访问令牌,例如:
ABCDE-AC5UNFT3ELQT-VMZKSPV
我如何使用此PAT?如何在 sourcetree git桌面工具中启用它?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的本地存储库被配置为使用HTTP而不是SSH的GIT。
git Remote -V
的输出应验证此信息。您会看到类似的内容:按照说明到创建并添加SSH键帐户。
然后,使用SSH遥控存储库作为Origin。
然后,尝试您的git命令。
Your local repository is configured to use HTTPS instead of git over ssh. The output of
git remote -v
should verify this. You will see something similar to:Follow the instructions to create and add your SSH key to your GitLab account.
Then, use a SSH remote repository for origin.
Then, try your git command.