Last active
February 11, 2023 13:23
-
-
Save benigumocom/0b48526a2dce78c54ffc549043b3c854 to your computer and use it in GitHub Desktop.
AndroidStudio project default template .gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ❯ find . -name .gitignore | |
| ./app/.gitignore | |
| ./.gitignore | |
| ./.idea/.gitignore | |
| ❯ cat .idea/.gitignore | |
| # Default ignored files | |
| /shelf/ | |
| /workspace.xml | |
| ❯ cat .gitignore | |
| *.iml | |
| .gradle | |
| /local.properties | |
| /.idea/caches | |
| /.idea/libraries | |
| /.idea/modules.xml | |
| /.idea/workspace.xml | |
| /.idea/navEditor.xml | |
| /.idea/assetWizardSettings.xml | |
| .DS_Store | |
| /build | |
| /captures | |
| .externalNativeBuild | |
| .cxx | |
| local.properties | |
| ❯ cat app/.gitignore | |
| /build | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
AndroidStudio 新規プロジェクトテンプレートから考える .gitignore
👉 https://android.benigumo.com/20230211/androidstudio-gitignore/