一.基础设置

(1)基础设置

1、Git命令行的初始化操作
  1. 初始化
cd ~
git init
  1. 注册账号
git config --global user.name "zyf2277058171"
git config --global user.email "2277058171@qq.com"

idea怎么登入gitlab idea登录github_上传


3. 配置本地Git库,与GitHub账号建立SSH连接

  • 打开GitHub上的ssh界面:
  • idea怎么登入gitlab idea登录github_git_02

  • 在本地Git生成密钥对
1.进入家目录
	cd ~        
2.删除已经存在的.ssh文件
	rm -rf .ssh         
3.对指定用户,生成密钥对
	ssh-keygen -t rsa -C github账号      
	连拍三个回车
		例子:ssh-keygen -t rsa -C zyf2277058171
4.进入.ssh文件
	cd .ssh
5.查看,并复制秘钥文件内的全部内容
	cat id_rsa.pub
4.粘贴到GitHub中的key中

idea怎么登入gitlab idea登录github_git_03

2、idea上的本地Git设置

idea怎么登入gitlab idea登录github_开发工具_04

3、idea上的GitHub

idea怎么登入gitlab idea登录github_上传_05

二.下载项目

(1)第一次下载

1、方式一:

1、将github上的项目地址复制进去即可下载

idea怎么登入gitlab idea登录github_github_06

2、方式二:

idea怎么登入gitlab idea登录github_github_07

3、最后的共同步骤:

idea怎么登入gitlab idea登录github_git_08

(2)pull-更新本地项目

1.

idea怎么登入gitlab idea登录github_idea怎么登入gitlab_09


2.

idea怎么登入gitlab idea登录github_上传_10

三.上传项目

(1)第一次上传步骤

1、为项目创建本地Git库
  1. 选择项目所在文件夹-OK
  2. 项目下的文件变红

idea怎么登入gitlab idea登录github_git_11

2、add操作,保存到暂存区
  1. 右击项目,点击Git,点击 +Add
  2. 然后文件变绿
3、commit操作,提交到本地库
  1. 右击项目,点击Git,点击Commit Directory
  2. 点击提交之后,选择要提交的文件和注释,点击commit
  • Author那里,可以填写Git的账号与邮箱

idea怎么登入gitlab idea登录github_idea怎么登入gitlab_12

4、分享工程到GitHub

idea怎么登入gitlab idea登录github_开发工具_13

idea怎么登入gitlab idea登录github_上传_14

(2)修改内容后,上传

1、先commit
  • 一般上传,会选择“src + resource + pom”三个文件夹

idea怎么登入gitlab idea登录github_git_15

2、再push

idea怎么登入gitlab idea登录github_git_16

3、成功

idea怎么登入gitlab idea登录github_开发工具_17

四.解决冲突

idea怎么登入gitlab idea登录github_上传_18

五.其他操作

(1)GitHub邀请同事成为伙伴

1、邀请

idea怎么登入gitlab idea登录github_开发工具_19

2、同意

idea怎么登入gitlab idea登录github_git_20