Getting started with Git and Bitbucket Server
ユーザー認証には 4 のレベルがあります。
- System Administrator — can access all the configuration settings of the Bitbucket Server instance.
- Administrator — same as System Admins, but they can't modify file paths or the Bitbucket Server instance settings.
- プロジェクト作成者 — プロジェクトを作成、編集、削除できる。
- Bitbucket Server User — active users who can access Bitbucket Server.
See Users and groups for more information about authentication.
See External user directories if you have existing user identities you wish to use with Bitbucket Server.
最初のプロジェクトを作成し、協力者と共有する
Create your project
The next thing you do in Bitbucket Server is to create a project. You'll add repositories to this project later.
Go to 'Projects' and click Create project. Complete the form and submit it to create your new project. See Creating projects for more information.
Open project access to others
プロジェクト管理者は、プロジェクトの権限を他の協力者へ与えることができます。
設定をクリックしてから、次にプロジェクトの権限をクリックします。
「プロジェクトの権限」ページでは、作成済みのプロジェクトに対してユーザーやグループを追加できます。
プロジェクトのアクセス権には 3 のレベルがあります。
- Admin — can create, edit and delete repositories and projects, and configure permissions for projects.
- 書き込み— プロジェクトのすべてのリポジトリからプッシュやプルができます。
- 読み取り — プロジェクトのリポジトリのコードヤコメントを参照したり、プルすることのみできます。
See Using project permissions for more information.
Create a repository and get your code into Bitbucket Server
リポジトリを作成する
プロジェクト管理者は、プロジェクト内でリポジトリを作成できます。
Once a repository is created, the project permissions are applied to the repository. That means all repositories created in a project share the same access and permission settings. If you already have a Git project you'd like to use, see Importing code from an existing project.
リポジトリの作成をクリックし、リポジトリ作成フォームを開きます。
Once submitted you will be taken directly to your repository homepage. As there is no content in your repository yet, you'll see some instructions to help you push code to your repository. See Creating repositories for more information.
Clone and push
This section describes how to clone the repository you just created and then push a commit back to it. You can see the clone URL to use at the top right of the screen. SSH access may be available.
In a terminal, run the following command (replace <bitbucketURL>
with the URL for your instance of Bitbucket Server):
git clone <bitbucketURL>/git/<projectname>/<reponame>.git
Use your Bitbucket Server username and password.
ターミナルでの結果は、以下のスクリーンショットのようになるはずです。
You should now have a new empty directory tracked by Git, in the user space of your local machine. Let's add some content and push it back to Bitbucket Server.
<reponame>ディレクトリで、helloworld.txt という名前のテキストファイルを作成し、その中に「Hello World」と書き込みます。
次に、ターミナルで次のコマンドを実行します
cd <reponame>
git add .
git commit -m "My first commit"
git push origin master
If everything went fine, when you refresh the Bitbucket Server screen, you will see that the homepage of your repository has been replaced with a file browser showing you a link to helloworld.txt.
これで、協力者とコーディングできるようになりました。
For more information about getting your code into Bitbucket Server, see Importing code from an existing project.
Check out our Git tutorials and training for more information, and have a look at this list of basic Git commands that you will probably use often.