How to setup and clone a remote git repo on Windows?

后端 未结 2 828
温柔的废话
温柔的废话 2020-12-14 02:46

Anybody know how to checkout, clone, or fetch project or code from a git remote repository on a Windows server?

Repository IP is: xxx.xx.xxx.xx, source

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-14 02:56

    You have to set up some kind of sharing from the windows machine, that you can access with git. Git supports 3 access methods: ssh, remote filesystem or http. The last one is probably most complicated, so I won't detail it. The first two are:

    1. Set up ssh server on windows.

      You can try this guide: http://www.timdavis.com.au/git/setting-up-a-msysgit-server-with-copssh-on-windows/. See also this question for some more options.

      Than you clone by git clone username@xxx.xx.xxx.xx:/c/git/path/to/repo (you will be asked for password).

      Advantage of this method is that it's secure (connection is encrypted and ssh server is trustworthy), so you can use it over internet. Since git server is running on the windows machine during access, you can set up hooks for advanced security policy, controlling other processes and such.

    2. Share the repository using windows sharing.

      Than on the linux host, you need to mount the share with smbmount. That might require username and password, depending on how you set the permissions.

      Than you clone by git clone /share/mountpoint/path/to/repo.

      This is probably easier to set up, but it is not very secure, so it shouldn't be used outside local network. Also in this case hooks on the windows machine won't be executed (in fact git will try to execute them on the Linux machine, but they either won't run there or can be bypassed anyway), so you can't apply advanced security.

    A particular file is not relevant, you need to give path to the directory containing .git subdirectory or to the directory that is a bare repository (path/to/repo above).

提交回复
热议问题