既存の作業ディレクトリと新規作成したBitbucketのリポジトリを紐つけたいことがあったので、その時の対応メモです。
環境:
- macOS Sierra
- git 2.8.2
Bitbucketで新規にリポジトリを作成すると、下記のようが画面がでてきます。
で、これを鵜呑みにすると以下のようなエラーが、、
$ cd /path/to/my/repo
$ git remote add origin https://outerbridge@bitbucket.org/outerbridge/myrepo.git
fatal: Not a git repository (or any of the parent directories): .git
そもそも、リポジトリがないからエラーになってるようです。
ということで、"git init"してから再度トライ。
$ cd /path/to/my/repo
$ git init // これ大事
$ git remote add origin https://outerbridge@bitbucket.org/outerbridge/myrepo.git
$ git add .
$ git commit -m "initial commit"
$ git branch // push前に、念のため masterブランチができてるか確認
* master
$ git push origin master
これで、紐付けが完了。