linux 使用 git The requested URL returned error: 403

来源:互联网 发布:淘宝汉服睡衣店铺推荐 编辑:程序博客网 时间:2024/05/22 06:15

从github上给出的git使用说明上看,流程是这样的:

…or create a new repository on the command line

echo "# Stormcv-web" >> README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/Applepleple/Stormcv-web.gitgit push -u origin master

…or push an existing repository from the command line

git remote add origin https://github.com/Applepleple/Stormcv-web.gitgit push -u origin master

但是发现在使用push时会出现 The requested URL returned error 403,发现以下命令解决问题

git remote set-url origin https://【Your Account】@github.com/Applepleple/Stormcv-web.git

除了上述步骤外,还需要设置自己的账户名和密码

git config --global user.name "Your Name Here"
git config --global user.email "your_email@example.com"


如果需要使用ignore的话,可以在主目录下建一个.gitignore的文件,具体的书写格式这里不再详细介绍啦

添加.gitignore后,用git add \*就可以添加非ignore文件了

如果ignore的文件已经被commit过了,需要

git rm -r –cached .

0 0