我在Rstudio
中创建了新项目,并且我也打开了github
项目存储库。但是,我打算将我的所有项目实施推送到github
页面,但Git
投诉有以下错误:
$ git push -u origin master
remote: Permission to JulaitiShayiding/mspc.git denied to julaiti.
fatal: unable to access 'https://github.com/JulaitiShayiding/mspc.git/': The requested URL returned error: 403
我使用那些git命令来执行此操作:
cd /path/to/my/repo
rm -rf .git
git init
git add --all
git commit -m "Initial commit"
git remote add origin "https://github.com/JulaitiShayiding/mspc.git"
$ git pull --rebase origin master
git push -u origin master
$ git pull origin master
修改:
我尝试使用.gitignore
添加git add .gitignore
文件,但仍无法解决权限被拒绝问题。 .gitingore
文件包含以下内容:
.Rproj.user
.Rhistory
.RData
我查看了SO
中的相关帖子,并尝试了所有这些git permission denied,但仍然无法解决我的问题。任何人都可以帮我解决这个问题吗?如何解决这个错误?任何的想法?在此先感谢:)