gitignore.io ------ 一個根據語言,工具或者平台來智能自動生成gitignore文件的在線工具
根據用戶輸入的語言類型或者平台類型,自動生成對應的gitignore文件。
例如,輸入android,eclipse,點擊“Genernate”即可。
得到gitignore文件:
# Generated by https://gitignore.io ### Android ### # built application files *.apk *.ap_ # files for the dex VM *.dex # Java class files *.class # generated files bin/ gen/ # Local configuration file (sdk path, etc) local.properties # Eclipse project files .classpath .project # Proguard folder generated by Eclipse proguard/ # Proguard folder generated by Intellij proguard_logs/ # Intellij project files *.iml *.ipr *.iws .idea/ ### Maven ### target/ ### Eclipse ### *.pydevproject .project .metadata bin/** tmp/** tmp/**/* *.tmp *.bak *.swp *~.nib local.properties .classpath .settings/ .loadpath # External tool builders .externalToolBuilders/ # Locally stored "Eclipse launch configurations" *.launch # CDT-specific .cproject # PDT-specific .buildpath
最後更新:2017-04-03 16:48:30