Configuring a Git client
Learn how to set up a client to work with a Git repository on your server.
This article describes how to set up a client on your computer to work with a Git repository stored on a hosting.com server.
Note
This article assumes that you are already familiar with basic Git usage, and you have already created a Git repository on your hosting.com account. For information about how to do this, please see this article.
Configuring a Git client
After you create a repository on your hosting.com 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:
-
To download the TortoiseGit client, use your web browser to visit https://code.google.com/p/tortoisegit.
-
Under Download & Install, click Download TortoiseGit and then save the.msi file on your computer.
-
Double-click the.msi file to start the installation process. Follow the on-screen prompts.
-
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.
-
Click Download, and then save the.exe file on your computer.
-
Double-click the.exe file to start the installation process. Follow the on-screen prompts.
Note
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.
-
You can now use TortoiseGit to work with your repositories. You can clone repositories, manage branches, do push and pull requests, and much more.
Note
For example, to clone a repository stored on a hosting.com 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 hosting.com account username, example.com with your domain name, and repository with the path to the repository:
ssh://[email protected]: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, hosting.com 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 a hosting.com server. Replace both instances of username with your hosting.com 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 hosting.com 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
Tip
If you do not want to enter a password every time you connect to a repository on a hosting.com server, you can set up SSH keys. For information about how to do this, please see this article.
Related Articles
Updated 3 days ago