Step by Step Setup Git Server on Windows with CopSSH + msysGit and Integrate Git with Visual Studio

http://www.codeproject.com/Articles/296398/Step-by-Step-Setup-Git-Server-on-Windows-with-CopS

Introduction

First of all, let me clarify that Git doesn’t need to specify the side for client and server. Your workstation can be both the client and server. That means you can get code from other computer, you’re the client; while others can also get code from your computer, you’re the server. That’s why Git is great.

In this post, the “Git server” means to make your computer available for others to pull/push code from/to.

The post is long because it’s step by step and with lots of screenshots. In fact, it just takes about 10 minutes to setup all.

Note: CopSSH is not open source any more, please buy it if you want to use it.

Software Requirement

Software required to setup a Git server:

  • CopSSH (install on the server side)
  • msysgit (install both on the server side and client side)
  • PuTTY (install both on the server side and client side)

Software required to integrate with Visual Studio:

Setup Steps

1. Install msysgit

  1. When you installing the msysgit, please choose c:\Git as the installation directory, because the space in the directory name may cause an issue in bash commands.

  2. In the “Adjusting your PATH environment”, I recommend to select “Use Git Bash only”.

  3. Other settings are default. After installation, you get the git bash icons on your desktop. You can try it with git command, if you get the following screen, you’ve installed the msysgit successfully.

  4. Add C:\Git\bin and C:\Git\libexec\git-core to Path. This step is very important.

2. Install CopSSH

  1. Just like the msysgit, we don’t install the CopSSH in program files folder to avoid some space issues. We install it to c:\ICW.

  2. Just use the default account as CopSSH provides:

  3. After installation, open COPSSH Control Panel.

  4. Click Add button in Users tab.

  5. Choose an existing user on your computer (you can create one in computer management). Here in my sample, the user is jinweijie.

  6. Allow all access:

  7. After the user is activated, click the Keys… button in the Activated Users section:

  8. Click Add:

  9. Use default key settings:

  10. Enter the Passphrase and File name:

  11. The private key will be saved to c:\ICW\home\jinweijie\ryan-vm-01_2048.ppk.

[Test step] Now we try to use the activated user to log on through SSH, open Git Bash, enter commands:

ssh jinweijie@ryan-vm-01 

Enter “yes” to continue.

[Test step] After entering your passwords (the windows account’s password), then you try to run git as the ssh user, but it isn’t performed as you expected:

That’s because CopSSH cannot find the git.exe on the server, so we need to tell CopSSH the git path.

3. Config CopSSH with Git path.

  1. Open C:\ICW\etc\profile with your favorite editor, add :/cygdrive/c/git/bin:/cygdrive/c/git/libexec/git-core(don’t forget the starting colon) to PATH , the whole line will be:
    export PATH="/bin:$syspath:$winpath:/cygdrive/c/git/bin:/cygdrive/c/
    		git/libexec/git-core" 

    Then Save.

  2. Restart the CopSSH by clicking twice the big button in CopSSH Control Panel:

  3. If we run Git Bash again, ssh jinweijie@ryan-vm-01, enter your password and run the git command, git should be found this time:

4. Configure Private Key on Client

  1. Copy the private key (we generated in step 1-k) from server to client.

  2. On the client side, use puttygen.exe to load the key (if you set the password in 1-j, you need to enter the password while loading the key):

  3. Click “Save private key” to save a copy of private key for plink.exe to recognize.

5. Create Repository, Integrate with Visual Studio

  1. Install gitextensions on both server and client.

  2. Since we have already installed the msysgit in step 1-a, we skip the “Install MsysGit”. But if you haven’t install msysgit on the client machine, you can check the checkbox and install it.

  3. Install to C:\GitExtensions\, other settings are default.

  4. On the server side, open Git Extensions, click “Create new repository”.

  5. On the server side, set the path to the project name under you CopSSH user’s home directory, select“Central repository, no working dir” (because we are the server), then “Initialize”:

  6. On the client side, open Git Extensions, click “Clone repository”:

  7. On the client side, the repository address should be ssh://jinweijie@ryan-vm-01/ICW/home/jinweijie/mydotnetproject. Please be aware that, the repository should begin with c:\ on the server.

  8. On the client side, click “Load SSH Key” and load the key which was saved in step 4-b:

  9. On the client side, enter the password if you set password to the key, then click Clone:

  10. On the client side, add ignore files:

  11. On the client side, open Visual Studio, create a project to mydotnetproject folder (which is the cloned repository), you may find the files are already under git source control:

  12. Click the “Commit” button on the menu bar, then click “Commit & Push”:

  13. Push succeeded:

  14. On the server side, you can find the new pushed files:

That’s all, happy GITTING! :)

History

  • 7th December, 2011: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


發佈了88 篇原創文章 · 獲贊 11 · 訪問量 19萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章