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 3 years have passed since last update.

練習用リポジトリの作り方

Posted at

この記事のきっかけ

実務外の勉強内容をアウトプットしてCTOに見てもらうためgithubに練習用公開リポジトリを作ろうと思い立ちました。

1.ローカルに作業ディレクトリを1つ作成する。(例:practiceディレクトリの中にindex.htmlだけ作る)

2.Github内にローカルと同じ名前のリモートリポジトリを作る

3.ローカルリポジトリとリモートリポジトリを紐付ける

3-1. terminalでルートディリクトリまで移動する(例:cd practice)
$ git init

これで、practiceという名前のローカルリポジトリができる


3-2. ルートディリクトリにあるものをインデックスに登録
$ git add .


3-3. インデックスに登録されたことをコミットする
$ git commit -m "first commit"

3-4. githubのリモートリポジトリのURLをコピーしてくる
$ git remote add origin リモートリポジトリのURL

3-5.ローカルリポジトリの内容をリモートリポジトリにpushする
$ git push -u origin master

これでできました
たくさんアウトプットしましょう!

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?