consolegit add file
git commit -m "hoge"
git push
git config --list | 設定の確認 |
git init | 初期化 |
git add <file or dir> | staging |
git status | ステータスの確認 |
git diff --staged | stageの変更箇所を確認 |
git reset | stageの内容を取り消す |
git commit | コミットする |
git commit -m "hoge" | コメント付きでコミット |
git log | コミットログの確認 |