GIT__ERROR__The requested URL returned error: 401 Unauthorized

在服务器上拉取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:[email protected]/org/project.git命令,防止密码被记录,换成git clone https://[email protected]/org/project.git提示输入密码,再输入用户密码。

你可能感兴趣的:(GIT__ERROR__The requested URL returned error: 401 Unauthorized)