在服务器上拉取gitlab中的工程,结果报以一错误:
error: The requested URL returned error: 401 Unauthorized while accessing http://x.git/info/refs
fatal: HTTP request failed
原因是pull工程时认证失败。
解决:
使用: git clone https://username:password@github.com/org/project.git
命令,防止密码被记录,换成git clone https://username@github.com/org/project.git
提示输入密码,再输入用户密码。