Git and IDEA中设置Git笔记

1.Git

Git安装

下载与安装

Windows和Mac系统, 可以直接从 http://git-scm.com/downloads 网址下载并运行安装程序.

设置全局变量

Git and IDEA中设置Git笔记_第1张图片

全局用户信息配置

配置用户和密码

$ git config --global user.name "your-name"
$ git config --global user.email "[email protected]"

检查配置信息

$ git config --list
[email protected]
user.name=xxxxxx

显示如图及成功!!!
Git and IDEA中设置Git笔记_第2张图片

2.IDEA中Git配置

2.1.查看配置

2.png

2.2.创建本地仓库

Git and IDEA中设置Git笔记_第3张图片

2.3.设置Git上传过滤文件

文件路径: E:\学习笔记\SpringBoot\Git图片
Git and IDEA中设置Git笔记_第4张图片

2.4.添置至暂存区

Git and IDEA中设置Git笔记_第5张图片

2.5.上传至Gitee

5.png

2.6.Commit(提交),Push(上传)

Git and IDEA中设置Git笔记_第6张图片

2.7.从Git上克隆项目

Git and IDEA中设置Git笔记_第7张图片

你可能感兴趣的:(java)