10
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Bitbucket git ローカルに作ったリポジトリをpush

Posted at

Bitbucketの「リポジトリ」から「リポジトリの作成」をする。
出来上がったリポジトリの「概要」-「私はゼロからスタートします。」にリポジトリのURLが記載されているので、

ターミナルからローカルにあるリポジトリへ移動し、

1.git remote add origin 上記URL
2.git remote -v で、push先が正しく設定されているか確認
3.git push origin master で masterをpushする

1.で既にremoteが設定されている場合は、
git remote set-url origin URL で変更可能

10
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?