git clone…redirect: https://gitlab.../sign_in

该错误显示GitLab重定向到登录页面,因为没有授权访问特定的Git存储库。要解决此问题,请尝试以下步骤:

  1. 请先检查输入的 Git 存储库 URL 是否正确。
  2. 确保全局配置中设置了用户名和电子邮件地址。

Plaintext
git config --global user.name "Your Name"
git config --global user.email "[email protected]"

检查是否有权限访问 GitLab 代码库,如果没有,请联系管理员进行授权。

cat C:\Users\Your Name\.gitconfig
[user]
        name = Your Name
        email = [email protected]
[core]
        autocrlf = false

Cat.concatenate,Concatenate files and print on the standard output;意思是连接文件并显示在标准输出上。

你可能感兴趣的:(bug,开发,git,gitlab,服务器)