关于java:Git-and-IDEA中设置Git笔记

31次阅读

共计 397 个字符,预计需要花费 1 分钟才能阅读完成。

1.Git

Git 装置

下载与装置

Windows 和 Mac 零碎, 能够间接从 http://git-scm.com/downloads 网址下载并运行安装程序.

设置全局变量

全局用户信息配置

配置用户和明码

$ git config --global user.name "your-name"
$ git config --global user.email "your-email@youremail.com"

查看配置信息

$ git config --list
user.email=xxxxxx@xxxxxx.com
user.name=xxxxxx

显示如图及胜利!!!

2.IDEA 中 Git 配置

2.1. 查看配置


2.2. 创立本地仓库

2.3. 设置 Git 上传过滤文件

文件门路: E:\ 学习笔记 \SpringBoot\Git 图片

2.4. 上传至 Gitee


2.5. 添置至暂存区

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

2.7. 从 Git 上克隆我的项目



正文完
 0