Get started with Git

On this page

Still need help?

The Atlassian Community is here for you.

Ask the community

Atlassian Bitbucket Data Center is the Git repository management solution for enterprise teams. It allows everyone in your organization to easily collaborate on your Git repositories.

This page will guide you through the basics of Bitbucket. By the end you should know how to:

Assumptions

This guide assumes that you don't have prior experience with Git. But we do assume that:

  • You have Git version 1.7.6 or higher installed on your local computer.
  • You are using a supported browser.
  • You have Bitbucket installed and running. If you haven't, see Getting started.

Please read Git resources or check out our Git tutorials for tips on getting started with Git.

Add users to Bitbucket and grant permissions

The first thing you can do is add collaborators.

To add users

  1. Go to the Bitbucket administration area by clicking the cog , then click Users in the Admin screen (under Accounts):
  2. Click Create user to go directly to the user creation form.
  3. Once you've created a user, click Change permissions to set up their access permissions.


There are 4 levels of user authentication:

  • System Administrator — can access all the configuration settings of the instance.
  • Administrator — same as System Admins, but they can't modify file paths or the instance settings.
  • Project Creator — can create, modify and delete projects.
  • Bitbucket User — active users who can access Bitbucket.

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.

Create your first project and share it with collaborators

Create your project

The next thing you do, is 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

If you are a project administrator, you can grant project permissions to other collaborators.

Click Settings then Permissions for the project:

The 'Project permissions' page allows you to add users and groups to a project you've already created.

There are 3 levels of project access:

  • Admin — can create, edit and delete repositories and projects, and configure permissions for projects.
  • Write— can push to and pull from all the repositories in the project.
  • Read — can only browse code and comments in, and pull from, the repositories in the project.

See Using project permissions for more information.

Create a repository and get your code into Bitbucket

Create a repository

If you are a project administrator, you can create repositories in the project.

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.

Click Create repository to open the repository creation form:

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):

git clone <bitbucketURL>/git/<projectname>/<reponame>.git

Use your Bitbucket username and password.

The result in your terminal should be similar to what you can see in the screenshot below.

 

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.

In your <reponame> directory, create a text file named helloworld.txt and write "Hello World" in it.

Now run the following command in your terminal

cd <reponame>
git add .
git commit -m "My first commit"
git push origin master

If everything went fine, when you refresh the Bitbucketscreen, you will see that the homepage of your repository has been replaced with a file browser showing you a link to helloworld.txt.

There you go, you're ready to get coding with your collaborators.

For more information about getting your code into Bitbucket, 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.


Last modified on Nov 14, 2022

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.