結構大きな変更になりそうだよー!ブランチ切りたいよー!
git 使ってなかったよー! Android 用の .gitignore ってどんな設定すればいいのー?
ということで
git init
vi .gitignore
# 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/ # Intellij project files *.iml *.ipr *.iws .idea/gitignore/Android.gitignore at master · github/gitignore · GitHub
.DS_store とかもコミット対象になってるんだけどーって場合は
vi ~/.gitignore
# Compiled source # ################### *.com *.class *.dll *.exe *.o *.so # Packages # ############ # it's better to unpack these files and commit the raw source # git has its own built in compression methods *.7z *.dmg *.gz *.iso *.jar *.rar *.tar *.zip # Logs and databases # ###################### *.log *.sql *.sqlite # OS generated files # ###################### .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes Icon? ehthumbs.db Thumbs.dbgit config --global core.excludesfile ~/.gitignore で設定する。
設定された確認するには以下のようにする。
git config --global --get core.excludesfile
[Git][GitHub]やっておくと地味に便利なこと2つ | DevAchieveで
設定したはずなんだけどすっかり忘れてた。