Mercurial .hgignore for Android Studio projects

前端 未结 4 876
灰色年华
灰色年华 2020-12-29 06:35

What files should be ignored in Mercurial when using Android Studio (1.0 RC4 Windows) for development?

Creating new application project also creates .gitignore

4条回答
  •  失恋的感觉
    2020-12-29 07:25

    IntelliJ IDEA mercurial .hgignore file for regular gradle / maven java multi project including wrappers (wrappers also should be committed)

    syntax: regexp
    .gradle/*
    .idea/*
    syntax: glob
    .git/*
    */out/*
    */build/*
    */target/*
    .DS_Store
    *.iml
    *.ipr
    *.iws
    *.log
    

提交回复
热议问题