AKAI TSUKI

System development or Technical something

Git commands

コミットされていないファイルが表示されます。

$ git status

新しく追加したファイルをステージにする?
stage for the next commitということみたい。

$ git add index.html

コミットします。

$ git commit -m "Add index.html"

ログを確認できます。

$ git log

プッシュします。

$ git push

もう一度、状態を確認します。

$ git status
# On branch master
nothing to commit, working directory clean