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.

フォルダをgithubリポジトリにpushする流れ

Posted at

#githubにローカルリポジトリをpushする方法

###あまり下調べせずにgithubを触っていたらエラーが頻出したのでメモ書き

.githubにリモートリポジトリを作成。(この際に HTTPSを選んでおくと簡単に設定できる

pushしたいディレクトリにターミナルから移動(cd~を使う

↓ 

1.git init  と入力して隠しフォルダを作成(これは一度だけ打てば良い
       隠しフォルダを確認する際は ⌘ + shift + .(ピリオド)で表示を切り替えることができる。
この際 .git というディレクトリが出来ていればOK。

2.git add . と入力(ステージング

3.git commit -m "(コミットメッセージ)"

4.git remote add origin ~指定したいリモートリポジトリ先

5.git push -u origin master

これが1連の流れ
           
                 

   

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?