リポジトリ追加の際のcommandの操作について
いつも忘れてしまうのでメモです。
#環境
- 作成済みのリポジトリを用意
- ローカルに新しくディレクトリを作成して
git init
後の操作
#リポジトリ追加コマンド
$git remote add origin 追加したいリポジトリ
#リポジトリ消去コマンド
$ git remote rm origin
#git pull
を実行するとエラーが出る
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> master
どのブランチにマージしていいかわからないという意味なので以下のコマンドを実行します。
$ git pull リポジトリurl master
これでマージできました。