facebook twitter hatena line email

「Git/bitbucket」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==bitbucketとは== プライベートなgitが無料で無制限に使えるサービス ==リポジトリ作成== グローバルヘッダー/リポジトリ/リポジ...」)
 
行15: 行15:
 
  You can use git or hg to connect to Bitbucket. Shell access is disabled.
 
  You can use git or hg to connect to Bitbucket. Shell access is disabled.
 
  # 上記2行が出れば接続されている
 
  # 上記2行が出れば接続されている
 +
 +
==プロジェクト作成==
 +
cd project1
 +
git init
 +
git remote add origin ssh://git@bitbucket.org/[ユーザ名]/project1.git
  
 
==参考==
 
==参考==
 
http://www.task-notes.com/entry/20150210/1423537200
 
http://www.task-notes.com/entry/20150210/1423537200

2016年1月28日 (木) 17:40時点における版

bitbucketとは

プライベートなgitが無料で無制限に使えるサービス

リポジトリ作成

グローバルヘッダー/リポジトリ/リポジトリの作成/リポジトリ名入力

bitbucketに公開鍵を追加する

  1. グローバルヘッダー/右上の個人設定/bitbucket_setting/sshキー/鍵を追加
  2. 接続元pcの公開鍵の文字列を"キー"部分に入れる
vi ~/.ssh/id_rsa.pub

接続テスト

$ ssh -T git@bitbucket.org
logged in as [ユーザ名]
You can use git or hg to connect to Bitbucket. Shell access is disabled.
# 上記2行が出れば接続されている

プロジェクト作成

cd project1
git init
git remote add origin ssh://git@bitbucket.org/[ユーザ名]/project1.git

参考

http://www.task-notes.com/entry/20150210/1423537200