2
3

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とcloud9を連携する最短ルート

Last updated at Posted at 2018-10-30
  1. bitbucketへログインする

  2. リポジトリを新規作成する

  3. c9でssh keyを作成する

cd ~/.ssh
ssh-keygen


1. 共通鍵をコピーする

    ```
cat ~/.ssh/id_rsa.pub
  1. bitbucketのアカウント設定 -> SSH鍵 -> コピーした鍵を追加する

  2. c9の該当プロジェクトディレクトリでコマンドを打つ

git remote add origin git@bitbucket.org:$user_name$_/$project_name$.git
git push -u origin master


以上
2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?