How to configure a Git client

This article describes how to set up a client on your computer to work with a Git repository stored on an A2 Hosting server.

This article assumes that you are already familiar with basic Git usage, and you have already created a Git repository on your A2 Hosting account. For information about how to do this, please see this article.

Configuring a Git client

After you create a repository on your A2 Hosting account, you probably want to be able to access it and work with it remotely instead of directly on the server. To do this, you use a Git client.

Follow the appropriate procedure below for the operating system installed on your computer.

Microsoft Windows

There are many Git clients available for computers running Microsoft Windows. This article describes how to install and configure TortoiseGit, a popular Windows client for managing Git projects.

To use TortoiseGit, you must download and install the client, as well as Git for Windows. To do this, follow these steps:

  1. To download the TortoiseGit client, use your web browser to visit https://code.google.com/p/tortoisegit.
  2. Under Download & Install, click Download TortoiseGit and then save the .msi file on your computer.
  3. Double-click the .msi file to start the installation process. Follow the on-screen prompts.
  4. After TortoiseGit is installed, you are ready to install Git for Windows. To download Git for Windows, use your web browser to visit http://msysgit.github.io.
  5. Click Download, and then save the .exe file on your computer.
  6. Double-click the .exe file to start the installation process. Follow the on-screen prompts.
    During installation, TortoiseGit may detect PuTTY SSH sessions already configured on your system. If it does, you can choose to use TortoisePlink to integrate TortoiseGit with your existing PuTTY sessions.
  7. You can now use TortoiseGit to work with your repositories. You can clone repositories, manage branches, do push and pull requests, and much more.
    For example, to clone a repository stored on an A2 Hosting server, right-click on the desktop or on a folder, and then click GitClone. In the URL text box, type the following URL, replacing both occurrences of username with your A2 Hosting account username, example.com with your domain name, and repository with the path to the repository:
    ssh://username@example.com:7822/home/username/repository
    Click OK. TortoiseGit clones the repository on your computer.
Mac OS X and Linux

The git command line client is often the quickest and easiest way to interact with a remote Git repository, although there are GUI-based clients as well. In either case, however, clients commonly use SSH to access Git. For security reasons, A2 Hosting uses custom port 7822 for SSH connections instead of the default port 22. Therefore, whichever Git client you use, you must configure it to use port 7822 for SSH.

For example, the following command demonstrates how to clone a repository stored on an A2 Hosting server. Replace both instances of username with your A2 Hosting account username, example.com with your domain name, and repository with the path to the repository:

git clone ssh://[email protected]:7822/home/username/repository

In the previous command, we explicitly specify port number 7822. However, you can also define the SSH port number for a remote host in your ~/.ssh/config file as follows:

Host example
    Hostname example.com
    Port 7822
    User username

The Host value can be any name you want. The Hostname value is the remote host you want to access, the port number is 7822, and the User value specifies your A2 Hosting account username. With this configuration defined, you can run git commands for the example.com domain by simply using the Host value. You do not have to specify the port number and username each time. The following command demonstrates how to do this:

git clone ssh://example/home/username/repository
If you do not want to enter a password every time you connect to a repository on an A2 Hosting server, you can set up SSH keys. For information about how to do this, please see this article.
Buy Git Hosting

Article Details

  • Level: Intermediate

Related Articles

Show More

Did you find this article helpful? Then you'll love our support. Experience the A2 Hosting difference today and get a pre-secured, pre-optimized website. Check out our web hosting plans today.

We use cookies to personalize the website for you and to analyze the use of our website. You consent to this by clicking on "I consent" or by continuing your use of this website. Further information about cookies can be found in our Privacy Policy.