ablog

不器用で落着きのない技術者のメモ

Bitbucket のプライベートリポジトリを使ってみる

リポジトリを作成する

  • Bitbucket | The Git solution for professional teams にログインする(アカウントは何年も前に作っていたので)。
  • [Repositories]-[Create repositories] で以下を入力し、"Create repositories" を押す。
    • Repository name: 任意のリポジトリ
    • Access level: "This is a private repository" にチェック
    • Repository type: Git
    • Advanced settings
      • Forking: No forks
      • Project management:"Issue tracking", "Wiki" にチェック
      • Language: SQL
$ mkidr project1
$ cd project1
$ git init
$ git remote add origin git@bitbucket.org:yoheia/project1.git
$ echo "Yohei Azekatsu" >> contributors.txt
$ git add contributors.txt
$ git commit -m 'Initial commit with contributors'
$ git push -u origin master

Gitクライアント(SourceTree)をインストールする

Gitクライアント(SourceTree)でリポジトリをクローンする