您的位置:首页 > 运维架构 > Linux

linux 使用 git The requested URL returned error: 403

2016-09-01 21:38 896 查看
从github上给出的git使用说明上看,流程是这样的:

…or create a new repository on the command line

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


…or push an existing repository from the command line

git remote add origin https://github.com/Applepleple/Stormcv-web.git git 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 .
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐