刮刀

如何在Mac中把Eclipse项目上传到github

刮刀 ( updated) DesignWriting

如何在Mac中把Eclipse中Java项目上传到github

如何在Mac中把Eclipse中Java项目上传到github

  1. https://github.com new repository

  2. 在eclipse中new project 比如:Test项目

  3. 右击”Test”->Team->share project… ->select a repository type:Git 勾选 Use or create repository in parent folder of project

  4. 点击 Create Repository -> Finish 这时候打开在workspace中的Test目录会发现多了一个.git文件夹。

  5. 再右击”Test”->Team->Remote->Push

URI就是github上面指定的地址: image

username和password就是github网站的用户名和密码

source ref 选择 refs/heads/master destination ref会自动填充,点击 Add Spec勾选Focus update 开始提交。

  1. 可以刷新网页查看提交的代码了。。。

注:在Eclipse中生public key, 并添加到GitHub Repository中。

 在菜单栏依次打开window → preference → general → network connection → SSH2 → Key Management → generate RSA Key... → apply → save private key...

生成 SSH 的 public key在GitHub中通过:edit your profile -> ssh key -> Add SSH Key 添加SSH Key, 
刮刀
Keep Calm and Carry On