2012-12-04 249 views

回答

13
爲Android

典型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 

Gitignore on github

雖然在Eclipse中創建一個項目時,默認情況下它創建的.classpath文件在項目目錄中。該文件將用於存儲類路徑中所需的文件名和其他相關文件,以成功編譯和執行項目。通常這個文件會在你更新項目庫時自動更新等。

你應該把它添加到我的意見在git。看到這個線程的更多:

.classpath and .project - check into version control or not?