0
0

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 1 year has passed since last update.

gitのリポジトリをクローンする

Posted at

前提条件

  • GitHubのアカウントを作成済み
  • GitHubにリポジトリ(プロジェクト)が存在する
  • SSH認証済み:参考

1. git cloneしたいリポジトリのページに行く+git cloneしたディレクトリを配置したいディレクトリをターミナルで開く(今回の例だとユーザー/ユーザー名(yoshiteruとなってるところ)配下)

pwdって何?:コマンド ターミナルで現在自分がどのディレクトリにいるのか参照する

lsって何?:コマンド ターミナルで現在いるディレクトリの中にあるファイルを一覧表示する
スクリーンショット 2022-04-12 6 53 27

2. GitHubページのCodeを押下してSSHの欄にあるURLをコピーしターミナルでgit clone コピーしたURLという形で貼り付ける

git clone git@github.com:kitutune/tes-repo.git

スクリーンショット 2022-04-12 6 54 10

3. git cloneしたリポジトリのディレクトリが自分のPCのディレクトリにあることを確認(git clone自体はここで完了)

スクリーンショット 2022-04-12 6 55 03

4. cloneしたディレクトリにターミナルで移動してプロジェクトの起動をしたり

スクリーンショット 2022-04-12 6 55 38

5. VsCodeに貼り付けて開いたりする

余談:code .コマンドを使った方が簡単と思う
スクリーンショット 2022-04-12 6 56 01

スクリーンショット 2022-04-12 6 56 45

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?