So once I type this at the command prompt and
hit the return, it's going to set up my Git repository.
Sometimes it may ask you to type in your credentials
including your password on your Bitbucket account.
So you may have to do that.
I had already done that previously, so that's why it didn't ask me again for
the password.
But once I had typed that in,
then the contents of my local depository will be pushed to the server's site.
So now, the data on my local Git repository is now matched on the server.
So let's go to Bitbucket to see the status of my online Git repository now.
Going to my Bitbucket and then reviewing the online Git repository,
you would see that there has been a branch,
the master branch, that has been pushed to my online Git repository.
I can then examine the source by looking at the source here.
And then you can see that I have the index.html file,
which is exactly the same as what I have in my local Git repository.
And examine the radius comments also, so
I can look at the state in the second comment and at the first comment.
So you can now see that all this information has been uploaded
to the online repository, including the history of all the comments.
Then going back there, you can see more details about all
the comments that have been sent to the server side.
I can examine each of those comments in a bit more detail.
And I'm going back to the source,
I can look at more details of the source like that.
So that has now setup my local Git
repository to be mirrored in Bitbucket.
The procedure is pretty much similar even on GitHub.
So let me set up an online GitHub repository.
Now, obviously, you have to remember that your local repository can only be
matched to one online repository.
So I will only go through setting up the repository on GitHub, and
you will notice the same kind of commands would be required if you want to set up
your local repository to be mirrored on a repository on GitHub.
So on GitHub, if you login to your account,
you would see something like this in your homepage.
You can go to the right-hand side where there's a plus side and then click on that
to create a new repository, or just click on this button here to say new repository.
And then when it comes up I can simply say git test,
and then, again, as a reminder, please, make that a private repository.
Most of these providers allow you to now store private repositories online,
so why make them public unless you really want to share it with other people?
So I would strongly urge you to keep your repositories private for
the moment, unless you are working with a Tee.
I should remind you that at this moment, GitHub supports private repositories
only for those subscribers who pay for their GitHub account.
So it is not available for subscribers who are using their free account.
So simply click on private, and
then Create repository, and then that will create a repository.
And then you would see that GitHub also gives me
a bunch of commands here on how to set up the repository.
So for creating a new repository on the command line, the commands that we
actually had done earlier, or to push an existing repository,
the same two kinds of commands that have to be issued.