目次

Git

定番初期セット

$ git init
$ git remote add origin hogehoge
$ git commit --allow-empty -m "Init"
$ git push

tig で操作するためには最低1個 commit が必要なので何も無いやつを入れておく。

ローカル設定

$ git config --local user.name "hogehoge"
$ git config --local user.email "hogehoge@example.com"

ツール

関連ページ

参考サイト

git pullの詳細な挙動を追ってみる - hokaccha.hamalog v2

タグ