変更する

誰の変更であるかを git に知らせる:

$ cat >>~/.gitconfig <<\EOF
[user]
        name = Your Name Comes Here
        email = you@yourdomain.example.com
EOF

次のコミットに含めるファイルの内容を指定し、 コミットする:

$ git add a.txt    # 更新したファイル
$ git add b.txt    # 新しいファイル
$ git rm c.txt     # 削除したファイル
$ git commit

コミットの準備と実行を一度に行う:

$ git commit d.txt # d.txt の最後の内容のみをコミット
$ git commit -a    # 管理対象の全ファイルの最新の状態をコミット