How to create a repository in Github with Eclipse? Here is an answer.

I will teach you how to do it step by step. Before creating your own repository in Github you need have a active account in Github.

Note: You can to go sign up if you haven't any Github account.

Here is my own eclipse version information.

Here we go!!!

1. Create a java project(e.g GitWithEclipseDemo for my demo) in your eclipse. And create some classes

2. Right click project -> Team -> Share Project...

3. Configure Git Repository window will be displayed. Then click 'Create' button.

4. Click 'Browser..' button to select a folder in your PC to set repository directory. This direcory is a local git repository.

In this case, I set my repository directory is 'C:\Users\Administrator\Documents\GitHub', and click 'Finish' button.

5.Click 'Finish' button in the Configure Git Repository window.

6.Go to Window -> Show View -> Other. Then the 'Show View' window will be displayed and to find Git section. Select 'Git Repositories' and 'Git Staging' and click 'Ok' button.

7.As step 6 to select 'History' item under Team section.

8. Right click project -> Team -> Commit..

9. Commit Changes to Git Repository window will be displayed. Type Commit message and select files that you want to commit and click 'Commit' button to commit.

In this case, I want to commit all files under 'GitWithEclipseDemo' project

10.Go to your own github website and click 'New' button to create a new repository in Github.

11. Type the Repository name and click 'Create Repository' button to create a new repository in Github.

In this case, I created 'GitWithEclipseDemo' repository in my Github.

12.Copy the URL the Github provided.

13.Back to eclipse and find Remotes under Git Repositories. Right click -> Create Remote...

14. Type the name for the new remote and click 'Ok' button

In this case, I used 'demo' for my remote name.

15. Configure push for remote 'demo' window will be displayed. Click 'Change' button.

16. Copy the URL that provided by Github(Refer Step 12), and type the User and password(this user and password can login your github). Click 'Finish' button.

17. Click 'Advanced' button in the Configure push for remote 'demo' window.

18. Select 'master' for Source ref and click 'Add Spec' button.

19.A new Mode will be added after clicking 'Add Spec' button in the Step 18.

20. Find demo in the Remotes section under Git Repositories. Right click -> Push

21.A push results  window will be displayed.

22.Go to your Github website, you can find your local sources had been pushed in Github now.

End. If you do some changes in your project(e.g. change code), you can Commit and Push it into Github.

You can find this 'GitWithEclipseDemo' in my Github.

Thanks for watching.

========================================================

More reading,and english is important.

I'm Hongten

E | hongtenzone@foxmail.com  B | http://www.cnblogs.com/hongten

========================================================

How to create a repository in Github with Eclipse?的更多相关文章

  1. remote: Repository not found. fatal: repository 'https://github.com/***/***.git/' not found

    通过命令添加新repository到git hub在执行最后一步命令(如下所示)的时候报错 git push -u origin master error:remote: Repository not ...

  2. 使用github管理Eclipse分布式项目开发

    使用github管理Eclipse分布式项目开发 老关我在前面的博文(github管理iOS分布式项目开发)中介绍了github管理iOS分布式开发,今天老关将向大家介绍使用github管 理Ecli ...

  3. github import repository创建github仓库

    现在,假设我们从零开发,那么最好的方式是先创建远程库,然后,从远程库克隆. 首先,登陆GitHub,创建一个新的仓库,名字叫blog: 1.先创建一个项目仓库 2. 我们勾选Initialize th ...

  4. Could not create local repository at /home/yizhenn/.m、IDEA倒入maven项目无法导报问题

    问题描述: 用自己电脑新搭建环境,用idea倒入项目后发现无法倒入jar包,很少郁闷,折腾了很久,最终发现问题 settings文件中下面这个配置,需要是自己电脑的路径 <localReposi ...

  5. github与eclipse创建仓库及克隆仓库

    1.前往github官网注册账号,并下载客户端: 2.为eclipse工程创建本地仓库: 1,目前大多eclipse都预装了egit插件,如果没有请自行安装 2,在eclipse内创建工程->右 ...

  6. github在eclipse中的配置

    http://www.cnblogs.com/yejiurui/archive/2013/07/29/3223153.html http://blog.csdn.net/shehun1/article ...

  7. github与eclipse结合使用

    github是现在流行的代码托管平台,今天以eclipse为例讲解github的使用,新建项目,提交eclipse项目到github,新建分支,合并分支 1.github上新建项目 记下githug项 ...

  8. 使用GitHub和Eclipse进行javaEE开发步骤

    下载Git客户端:链接:http://pan.baidu.com/s/1jIueUEy 密码:7gef; 下载Eclipse javaee客户端:http://www.eclipse.org/down ...

  9. Github结合Eclipse出现的问题

    半年前因为学习Git花费了很长时间,半年过去了,因为不使用,基本全部忘记了,最近在公司需要使用Eclipse开发相关项目,用到前期的测试数据挖掘的小算法,又重拾Git,不过这次不再是命令行模式,而是结 ...

随机推荐

  1. APP IM 之 XMPP和Jabber及选择方案

    1. 概述 IM ,InstantMessaging,即时通信. 现在,市面上有一批提供即时通信功能的公司.如:全时.云之讯(IM无语音和视频).容联云通讯(支持点对点音视频,按照消息的存储空间收费) ...

  2. js原生写的微博留言板有angularjs效果

    1.HTML: <!DOCTYPE html><html><head lang="en">    <meta charset=" ...

  3. js架构设计模式——从angularJS看MVVM

    javascript厚积薄发走势异常迅猛,导致现在各种MV*框架百家争雄,MVVM从MVC演变而来,为javascript注入了全新的活力.我工作的业务不会涉及到 angularJS[ng] 这么重量 ...

  4. Struts2文件的下载

    1.下载登录页面download.jsp 1: <%@ page language="java" contentType="text/html; charset=U ...

  5. php中二维数组如何使用

    最近需要使用PHP中的二维数组,就用一个简单的例子来说明PHP中二数组是如何使用 <?php $a=array('a','b','c'); $c=array('a1','b1','c1'); $ ...

  6. Java线程:同步

    一 同步的概念 线程的同步是为了防止多个线程访问一个数据对象时,对数据造成的破坏. 例如:两个线程ThreadA.ThreadB都操作同一个对象Foo对象,并修改Foo对象上的数据. MyRunnab ...

  7. C++中的输入参考

    1.输入输出 1)operator>> 参考:cplusplus.com Extracts characters from is and stores them in s as a c-s ...

  8. 基于Xcode8插件开发~一键检测处理头文件引用

    Xcode8开放了新的一个Extension:Xcode Source Editor Extension,目的是让开发者可以正规的自主为IDE编写插件,虽然说系统现提供的功能还比较拮据,但是不妨碍我们 ...

  9. Linux笔记(十一) - 文件系统管理

    (1)文件系统查看命令:df [选项] [挂载点]-a 显示所有文件系统信息,包括特殊文件系统,如/proc /sysfs-h 使用习惯单位显示容量,如KB,MB或GB-T 显示文件系统类型-m 以M ...

  10. Vmware 中安装 Ubuntu Server (或者ubuntu 以文本界面登陆时) 分辨率无法全屏问题

    Vmware 中安装 Ubuntu Server/Ubuntu 分辨率,无法全屏问题 需要更改grub设置 在终端或者文本界面按下列步骤进行设置: 第一步: 输入命令 sudo vim /etc/de ...