如何使用eclipse将代码提交到GitHub服务器?
当我运行此命令时
git push -u origin master
显示以下错误
错误:请求的URL在访问时返回错误:403 https://github.com/something/something
答案 0 :(得分:4)
我不是专家,但我曾经做过一次
认为简单直接的方式是
1.将Git下载到您的系统
2.cd到您的eclipse项目cd / workspace / sampleproject
3.Commands
git config --global user.name "Your Name Here"
git config --global user.email "your_email@youremail.com"
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/gitusername/reposname.git
git push -u origin master this line may throw error but no problem
4.从eclipse - >帮助 - > eclpise marketplace - >搜索'git' - >安装'Egit-git团队提供者'
5.转到eclipse - > Windows - >打开透视图 - > Git存储库
6.从左侧的Git存储库视图“添加现有本地存储库”然后浏览到'/ workspace / sampleproject'
7.现在右键单击此添加的存储库位置并添加注释按Commit。
8.现在右键单击此添加的存储库,单击“推送”
By default Configured remote repository should be checked then press Next
From Source Ref and Destination Ref Select HEAD //you may change if u want
Select next give your github username and password then click on Finish.
答案 1 :(得分:2)
如果您使用的是https地址,则需要传递凭证(Github登录名和密码) 有关示例,请参阅“Syncing with github”。
使用Eclipse和Egit,您可以在为本地存储库定义远程地址时设置这些凭据 请参阅“Push upstream”。
答案 2 :(得分:0)
只需打开项目透视图并单击Git,您将看到项目的工作副本 - >右键单击项目并选择提交选项。那是
或
右键单击您的项目并选择团队,您可以看到与git命令相关的各种选项选择提交。