I am working following a set of java swing tutorials, each is an Eclipse project, keep them in a workspace. I init a git repository in the workspace folder (mac), and upload to github. When I download this folder in another computer (linux), the projects are not recognized as such, and opening/importing in Eclipse fails. Says: 'Folder not recognized as project'. What is the best way to handle a collection of projects in git?
4978 次
2 に答える
1
失敗したインポートについて: @nwinkler が書いているように、Eclipse は.project
and を探します。これらのファイル (およびディレクトリ) を git リポジトリclasspath
に追加する必要があります。.settings
に関して.gitignore
は、通常、ワークスペースのものをそこに置きます(そして、import existing projects
クローン作成後にEclipseで行います):
あれは、
.metadata/.plugins
.metadata/.lock
.metadata/.log
そして、各プロジェクトの bin フォルダー
project_dir/bin
およびその他の生成されたファイル
于 2015-06-16T10:36:35.720 に答える