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://username@example.com/home/username/repository Click OK . TortoiseGit clones the repository on your computer. If your server uses a non-standard port for SSH, include a colon and the port number. For example: ssh://username@example.com:7822/home/username/repository