generated at
Git:基本操作
公開リポジトリから、更新されたファイルを取ってくる
$ git pull
ほかのリポジトリの変更点をローカルリポジトリにマージする

変更点の表示
$ git show

コミット
$ git commit
変更点をコミットする

ファイルを編集
インデックス(ステージングエリア)にファイルを追加する
$ git add

コミット
$ git commit

公開リポジトリに送る
$ git push
公開リポジトリに自分のリポジトリの内容を送信する


f.mermaid
graph TB A[git init] --> C[git pull] B[git clone] --> C C --> D[git show] D --> E[(ファイルを編集)] E --> F[git add] F --> G[git commit] G --> H[git push] H --> C