美文网首页
git 忽略文件夹或文件

git 忽略文件夹或文件

作者: 音乐与咖啡Bean | 来源:发表于2020-05-17 10:00 被阅读0次

    1.git config --global core.excludesfile '~/.gitignore'

    2.创建.gitignore文件

    3添加如下信息:

    /target/

    !.mvn/wrapper/maven-wrapper.jar

    ### STS ###

    .apt_generated

    .classpath

    .factorypath

    .project

    .settings

    .springBeans

    .sts4-cache

    ### IntelliJ IDEA ###

    .idea

    *.iws

    *.iml

    *.ipr

    ### NetBeans ###

    /nbproject/private/

    /build/

    /nbbuild/

    /dist/

    /nbdist/

    /.nb-gradle/

    *.log

    *.dat

    target/

    output/

    .DS_Store

    logs/

    *.dat

    log/

    logs/

    ilogFailedLogs/

    ilogMetricLogs/

    temp.text

    *.tmp

    package.bat

    target

    .gitignore

    相关文章

      网友评论

          本文标题:git 忽略文件夹或文件

          本文链接:https://www.haomeiwen.com/subject/vnyjohtx.html