git项目使用教程(eclipse)

目录

一、选择导入

二、新建分支

三、 切换分支

四、排除非提交文件

五、提交文件

​六、更新代码(从远处仓库获取)

方式一:Fetch from origin-从远处仓库更新到本地仓库

 方式二:pull 

七、 冲突


eclipse Version: 2021-09 (4.21.0)

下载项目(clone)

一、选择导入

git项目使用教程(eclipse)_第1张图片

选择Projects from Git(with smart import)-自动识别导入的项目

git项目使用教程(eclipse)_第2张图片

选择Clone URI

git项目使用教程(eclipse)_第3张图片

输入仓库地址

git项目使用教程(eclipse)_第4张图片

选择分支(默认即可) 

git项目使用教程(eclipse)_第5张图片

选择本地存放目录

git项目使用教程(eclipse)_第6张图片

 完成

git项目使用教程(eclipse)_第7张图片

导入的项目 

git项目使用教程(eclipse)_第8张图片

二、新建分支

git项目使用教程(eclipse)_第9张图片

选择来源分支,输入 分支名称

git项目使用教程(eclipse)_第10张图片

三、 切换分支

git项目使用教程(eclipse)_第11张图片

四、排除非提交文件

右键-Ignore

git项目使用教程(eclipse)_第12张图片

git项目使用教程(eclipse)_第13张图片

 五、提交文件

将文件从工作区加到暂存区

git项目使用教程(eclipse)_第14张图片

 git项目使用教程(eclipse)_第15张图片

提交

git项目使用教程(eclipse)_第16张图片六、更新代码(从远处仓库获取)

方式一:Fetch from origin-从远处仓库更新到本地仓库

git项目使用教程(eclipse)_第17张图片

已更新到本地仓库

 git项目使用教程(eclipse)_第18张图片

从本地仓库更新到工作区

git项目使用教程(eclipse)_第19张图片

选择更新的分支

 git项目使用教程(eclipse)_第20张图片

 更新成功

git项目使用教程(eclipse)_第21张图片

 方式二:pull 

git项目使用教程(eclipse)_第22张图片

一步到位

git项目使用教程(eclipse)_第23张图片

七、 冲突

git项目使用教程(eclipse)_第24张图片

切换Synchronize Workspace

git项目使用教程(eclipse)_第25张图片

选Merge Tool 

git项目使用教程(eclipse)_第26张图片

将远程代码复制到本地文件 

git项目使用教程(eclipse)_第27张图片

选择Mark as Merged 

git项目使用教程(eclipse)_第28张图片

提交

git项目使用教程(eclipse)_第29张图片

你可能感兴趣的:(git,eclipse,java)