其他分享
首页 > 其他分享> > idea集成Git

idea集成Git

作者:互联网

idea集成Git

  1. 配置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
    
  2. 在.gitconfig中添加以下配置,excludesfile为.gitignore文件路径

    [core]
    	excludesfile = C:/Users/lim/.gitignore
    
  3. idea定位Git程序

    打开settiings

    image-20220211100915930
    • 点击Version Control
    • 选择Git
    • 第三步文件路径:打开git.exe所在文件路径(Git安装目录的bin文件下)
    • 点击Test

    若画面显示如下,则idea定位Git成功:

    image-20220211101731506

  4. 创建git本地库

    image-20220211102157862

    默认选中的目录就是本项目的根目录,点击ok即可

    image-20220211103803423

标签:集成,文件,Git,idea,点击,git,gitignore
来源: https://www.cnblogs.com/lim-sy/p/15882635.html