Open a browser and a Git Bash window (also called a terminal window) from your desktop. The terminal window on your local system which is the system you code on as opposed to the remote Bitbucket server. After opening the terminal window, do the following:
As you work with code, you will find that you have multiple repositories that you work in. It is a good idea to create a directory to contain all those repositories. Generally, this is your home directory but it can be anywhere you want it to be.
mkdir repos
cd repos
Click to view GitBash cut 'n paste tips...
Git will ask you for the repository password. This is the password
you entered when you created your Bitbucket account. If you created
an account by linking to Google or Facebook and you are following
this tutorial, you should have created a password already.
$ cd ~/repos $ git clone https://newuserme@bitbucket.org/newuserme/bb101repo.git Cloning into 'bb101repo'... Password warning: You appear to have cloned an empty repository.
You already knew that your repository was empty right? Recall that you have added no source files to it yet.