2

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?

4

2 に答える 2

1

失敗したインポートについて: @nwinkler が書いているように、Eclipse は.projectand を探します。これらのファイル (およびディレクトリ) を git リポジトリclasspathに追加する必要があります。.settings

に関して.gitignoreは、通常、ワークスペースのものをそこに置きます(そして、import existing projectsクローン作成後にEclipseで行います):

あれは、

.metadata/.plugins
.metadata/.lock
.metadata/.log

そして、各プロジェクトの bin フォルダー

project_dir/bin

およびその他の生成されたファイル

于 2015-06-16T10:36:35.720 に答える