ローカル環境のコマンドライン上でgitリポジトリを作成した際に
設定し忘れることがあるのでメモっておく。
- Author、Commiterの設定
$ git config --local user.name "Name"
$ git config --local user.email "Email"
- gitのAuthor、Commiterの変更
$ git filter-branch -f --env-filter "GIT_AUTHOR_NAME='Name' GIT_AUTHOR_EMAIL='Name' GIT_COMMITTER_NAME='Name' GIT_COMMITTER_EMAIL='Email'" HEAD
- ローカルで作成したリポジトリからリモートへのpush
- githubでリモートリポジトリを作成する
- 以下のコマンドでリモートにpushする
$ git remote add origin https://github.com/リモートリポジトリ
$ git push -u origin master
git remote add origin https://github.com/リモートリポジトリ
このコマンドでローカルとリモートを関連付ける