eclipse项目提交到git

http://www.open-open.com/lib/view/open1406105786710.html

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

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

4.右击"Test"->Team->commit 本地提交

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

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

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

5.finish

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

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

时间: 2024-10-12 23:23:29

eclipse项目提交到git的相关文章

IDEA新建项目提交到git仓库时报错:Can't Update No tracked branch configured for branch master or the branch...

写了一天代码,提交时报错.拉取也不行 Can't Update No tracked branch configured for branch master or the branch doesn't exist. To make your branch track a remote branch call, for example, git branch --set-upstream-to=origin/master master (show balloon) 原因: Git 不知道你要pul

如何将本地项目提交到git服务器中

1.初始化git git init 2.添加要提交的文件 git add 文件名(注:当要把整个项目都提交则用 git add . ,每次文件只要被修改,都要重新在add一次,不然commit只会提交add 暂存区里的内容) 3.完成提交 git commit -m "描述" 4.将本地git和服务器上的连接(如果已经连接,这一步可以省略) git remote add origin ***.git ,origin是你要提交到的仓库的地址 5.将本地项目推上去(如果远程仓库里面的项目没

idea创建项目提交远程git

创建新项目并提交到远程Git仓库 点击OK后,创建完成本地仓库 .  因为是第一次提交,Push前需要指定远程仓库的地址.如下图,点击Define remote后,在弹出的窗口输入远程仓库地址:   可以在远程仓库中看到,项目已被提交到gitlab远程仓库.

IDEA将本地的一个项目提交到Git新仓库

1. 首先在github上创建一个仓库,仓库名随意 2. 然后将本地的idea项目下的.git文件夹删除(如果有的话,说明该项目之前提交过其他仓库) 3. 然后点击顶部菜单栏的VCS-->Import into Version Control-->Create Git Repository 4.  先add 5. 再commit directory 6. 点击复制远程仓库地址,粘贴后 commit 7. push (快捷键 Ctrl + shift + K) 原文地址:https://www.

将项目初始化到git服务器

使用的是GitLab作服务器; 步骤: 一. 先在服务器上创建一个新的项目(GitLab服务器右上角的New project) 点击后弹出如下界面; 这个是步骤Git global setup 一般不用设置; 完成 二.将项目上传到该仓库(创建的新文件夹) 2.1.在F盘或者其他盘 Git Bash Here (首先确认你的电脑上必须已经安装了Git客户端) 然后执行git clone 服务器上的空项目位置(该命令就是把服务器上的项目从服务器上下载到本地)后进入screen_project(项目

Eclipse使用git提交本地项目到远程git仓库

1.创建了本地git仓库: 右键项目——Team——share ——Create Repository——finish   2.将项目提交到本地仓库然后提交到远程git仓库 右键项目——Team——commit and push   3.填写git的https地址和账户 4.Source ref和Destination ref选择refs/heads/master——Add Spec——勾选force update,不然提交空内容 Done

eclipse项目转移至IDEA与IDEA tomcat报错(idea自带tomcat版本太高)与war包部署到win服务器与idea提交git的总结

eclipse导出项目到idea时,不要导出target: idea打开eclipse项目后,出现junit找不到的问题,原因是jar包缺失,而maven配置的低版本的junit也显示找不到,解决办法: <!-- https://mvnrepository.com/artifact/junit/junit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifac

eclipse 本地项目提交到远程库以及从远程库中添加项目 ---git

本地项目提交到远程库 1.右击项目->team->share project 2.选择本地库 从远处库中的项目拉到本地 1.右击项目->import项目

eclipse上导入import git项目

1.左上角File->import->git eclipse 可以从很多来源处import项目,项目来源可以使git/maven/general等. import来源可以看下面 2.点击git导入后,输入git网址的项目uri,git网站的username,password等.就可以导入git网站的项目了