1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

『一番乗りの人』がGit&Eclipseでプロジェクトを作成する方法

Posted at

はじめに

フレームワークを使用した開発の際に『一番乗りの人』がやる手順。
なんかイマイチ覚えきれないので覚え書き。

サーバーでの作業

Bareリポジトリを作成する。

[root@server ~]# su - gituser
[gituser@server ~]$ cd git
[gituser@server ~]$ pwd
/home/gituser/git
[gituser@server ~]$ mkdir newRepo.git
[gituser@server ~]$ cd newRepo.git
[gituser@server ~]$ git init --bare --share=true

サーバーには特に作業ファイルが不要ないため[--bare]オプションを付加しておく。

Eclipseでの作業

Gitリポジトリの複製

  1. [Gitリポジトリー]-[Girリポジトリーを複製し、このビューへ追加]
  2. URIの複製を選択し、[次へ]を押下します。

010-010.PNG

リポジトリのロケーションを入力

サーバーへ接続するため、作成したリポジトリ名を指定します。

010-020.PNG

ローカルの保管場所を指定します。

クライアントの適当なディレクトリを指定します。
これでクライアントに、Gitのクローンリポジトリが作成されます。

010-030.PNG

プロジェクトの作成

Eclipseから『一番乗りの人』が作成するプロジェクトを作成します。
[ファイル]-[新規]-[Javaプロジェクト]

ロケーションにリポジトリのクローンを作成したディレクトリを指定します。

020-020.PNG

後は、いつもの様にすればOK

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?