idea集成Git
-
配置Git忽略文件,在C:\Users\lim目录下创建.gitignore文件,配置内容如下:
# IntelliJ project files .idea *.iml out gen /.apt_generated/ /.classpath /.factorypath /.project /.settings/ /.springBeans /target/ /.gitignore /user-profile-analysis.iml /.idea /README.md .DS_Store
-
在.gitconfig中添加以下配置,excludesfile为.gitignore文件路径
[core] excludesfile = C:/Users/lim/.gitignore
-
idea定位Git程序
打开settiings
- 点击Version Control
- 选择Git
- 第三步文件路径:打开git.exe所在文件路径(Git安装目录的bin文件下)
- 点击Test
若画面显示如下,则idea定位Git成功:
-
创建git本地库
默认选中的目录就是本项目的根目录,点击ok即可