Typical .gitignore file for an Android app

前端 未结 8 1831
慢半拍i
慢半拍i 2020-12-04 05:55

Just put an Android project under git (beanstalk) version control via the command line (mac terminal). Next step is to set up exclusions.

To those

8条回答
  •  無奈伤痛
    2020-12-04 06:28

    In Addition, if you use IDEA's IntelliJ, and you build Artifacts (and you should), then you might want to add:

    out/
    

    (that's where Artifacts are built by default).

    And if you don't want to share your IntelliJ project stuff ignore

    .idea/
    

提交回复
热议问题