├── .idea ├── .gitignore ├── Git.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml └── vcs.xml └── file.txt /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Git.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/Git/HEAD/.idea/Git.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/Git/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/Git/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/Git/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /file.txt: -------------------------------------------------------------------------------- 1 | commit 2 | --------------------------------------------------------------------------------