-
git init
:ローカルリポジトリ作成 -
git add .
:インデックスにディレクトリを一時保存。(インデックスとは、リポジトリにコミットする
準備をするために変更内容を一時的に保存する場所のこと。) -
git commit -m "~"
:ローカルリポジトリに追加や変更を記録する
(git commit -am "~"
:addとcommitを同時に行う) -
リモートリポジトリに反映させるために、リモートリポジトリの情報を追加
git remote add origin https://github.com//awesome.git
:こんな感じのやつ -
git push origin master
:ローカルリポジトリをリモートリポジトリにプッシュ!!
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme