0

cPanel WHM VPS で git サーバーをセットアップし、リポジトリに接続するための URL を生成する必要があります (/opt/git/repo.git にリポジトリを作成し、SourceTree またはその他の Windows ビジュアル Git クライアントを構成します。

https://newagesoldier.com/setting-git-cpanel-server/のガイドに従い 、レポをセットアップしました。

次に、Windows コンソールで次のコマンドを実行して、クローンを作成しようとしました。

git clone git@server.domain.com/opt/git/repository.git

しかし、このエラーが発生しました:

致命的: リポジトリ '[URL]' が存在しません

この事件に関する投稿や質問をたくさん読みましたが、その多くは非常に古いものであり、明確でないものや不完全なものもあります。

ありがとう!

4

1 に答える 1

1

Windows と cpanel Linux アカウント間で ssh を使用して git push/pull する方法。

*サーバー: Linux: centos/whm/cpanel/ssh アカウント

Dev: Windows7 x64: with C:/cygwin (2016), putty (2015),

[Windows]
> puttygen
  generate and save to ~/.ssh/myprivatekey.ppk
    > save as openssh > myopenssh.key
    > Copy public key mypublickey.txt

[Cpanel]
  Allow ssh access
  Paste mypublickey.txt into cpanel ssh keys,
    Authorize key.

[Check SSH key works]
> ssh -V
  ..2016..
> c:/cygwin/bin/rsync --list-only \
    -e "ssh -i myopenssh.key" \
    "USERNAME@website.org:/home/USERNAME"
  SUCCESS

[Linux]
> putty USERNAME@website.org
  using above myprivatekey.ppk
$ pwd
  /home/USERNAME
$ hostname
  website.org
# Setup git repo on linux
$ git --version  # 1.7... yum update...on linux if you need a new git.    
$ alias git="/usr/local/cpanel/3rdparty/bin/git"    
$ git --version # 2.8...        
$ mkdir ~/repo.git ; cd ~/repo.git ; git init --bare    
  Initialized empty Git repository in /home/USERNAME/repo.git/
$ git config --global user.name "USERNAME"
$ git config --global user.email USERNAME@website.org
$ cd ~ ; git init; git remote add repo repo.git     
$ git add public_html
$ git commit -m "first commit"
$ git push repo master
   SUCCESS

[Windows]
:: **Now clone CPANEL account into xampp**
> cd c:/xampp/htdocs/WEBSITE
> git --version # 2.8...
> git init
> git remote add origin ssh://USERNAME@website.org/home/USERNAME/repo.git
> git pull
  Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
> git config core.sshCommand "ssh -i path/to/openssh.key" 
:: Dont use doublequotes in the next command
> set GIT_SSH_COMMAND=ssh -i path/to/myopenssh.key   
> git pull
  SUCCESS 
:: .. edit .. commit 
> git push
  SUCCESS

windows/cmd/cygwin のオプション設定

> set HOME=c:/users/%USERNAME%
> setx HOME %HOME% -m
> cd /d %HOME%
> mkdir .ssh
:: OR create a hardlink to your .ssh dir
> mklink /D c:/your/.ssh .ssh
> ls -al ~/.ssh/

Windows cygwin64/ssh が ~/.ssh/config の不適切なパーミッションについて不平を言う場合は、このフラグ -F .. を使用してください。

> set  GIT_SSH_COMMAND=ssh -F ~/.ssh/config -i path/to/myopenssh.key   
> setx GIT_SSH_COMMAND "ssh -F ~/.ssh/config -i path/to/myopenssh.key" -m
> ssh -F ~/.ssh/config -i path/to/myopenssh.key  
于 2016-08-28T12:47:08.987 に答える