2012-03-12 5 views
8

Tôi có Windows 2008 R2 Server Standard Edition. Tôi đã cài đặt FreeSSHd cùng với Git. Tường lửa của Windows có ngoại lệ được đặt thành cổng 22. Tôi có thiết lập máy chủ SSH để chỉ chấp nhận các khóa công khai SSH. Tôi có thể đăng nhập vào máy chủ bằng thiết bị đầu cuối (ví dụ: ssh [email protected]). Khi tôi đi đến sử dụng lệnh git clone (ví dụ git clone ssh://[email protected]/path_to_my_repo) Tôi nhận được lỗi này:gây tử vong: lỗi giao thức: ký tự độ dài dòng không hợp lệ: Unab

fatal: protocol error: bad line length character: Unab

tôi đang ở một mất mát tuyệt đối như những gì đang gây ra nó. Tôi đã bật giao thức Shell, SFTP và Tunnel.

+2

Có lẽ điều này? http: // stackoverflow.com/questions/8170436/git-remote-error-fatal-protocol-lỗi-bad-line-length-character-unab – ellotheth

Trả lời

4

Quên freeSSHd. Nó không thể được cấu hình để chạy với git.

Bạn có hai (như xa như tôi có thể tìm thấy) sự lựa chọn - đi với một máy chủ SSH phức tạp hơn cho Windows và sau đó thực hiện điều này: http://holyhoehle.wordpress.com/2011/01/26/setting-up-a-git-server-on-windows-server-2008-r2-using-msysgit-and-winsshd/

hoặc đi với OpenSSH (CopSSH)

http://java2cs2.blogspot.de/2010/03/setup-git-server-on-windows-machine.html

http://www.timdavis.com.au/git/setting-up-a-msysgit-server-with-copssh-on-windows/

Setup a Git server with msysgit on Windows

http://code.google.com/p/tortoisegit/wiki/HOWTO_CentralServerWindowsXP

+1

Phản hồi có liên quan, nhưng tôi nghĩ rằng tôi đã đề cập đến hướng dẫn ở trên bằng cách sử dụng WinSSHD làm việc cho tôi. Tôi đã triển khai hệ thống Dev, QA, PRD ba cấp cho nhóm của chúng tôi. Hoạt động hoàn hảo cho nhu cầu của chúng tôi. – gwrichard

2

Git qua SSH sử dụng đầu ra của nguyên tắc ống SSH. Nếu đầu ra đó chứa bất kỳ dữ liệu giả nào không liên quan đến git, thì lệnh git sẽ không phân tích cú pháp đó và hủy bỏ thông báo lỗi tối nghĩa. Điều đó có thể xảy ra nếu bạn có một kịch bản người dùng hiển thị nội dung khi bạn kết nối, ví dụ, hoặc nếu một cái gì đó ném một thông báo lỗi không được hiểu bởi git.

Bạn sẽ lưu ý rằng 'Không' có vẻ như bắt đầu từ 'Không thể', có lẽ là thông báo lỗi dành cho con người chứ không phải là git.

Điều gì xảy ra khi bạn chạy lệnh sau?

ssh [email protected] git-upload-pack '/path_to_your_repo' 

Về lý thuyết, bạn sẽ nhận được thông báo lỗi bắt đầu bằng 'Không thể'. Ví dụ: 'Không thể tìm thấy git-upload-pack'. Trong trường hợp đó, bản sửa lỗi sẽ thêm git-upload-pack vào đường dẫn của bạn!

0

tôi đã cùng một vấn đề ngày hôm nay tại công việc của tôi ... vì vậy tôi thấy điều này: Setting up a Git Server on Windows Server 2008 R2

Những gì bạn cần để xem là dưới đây:

Making Git work on the server:

  1. If not already done, install msysgit on your server (I would recommend to install it directly to C:\Git or at least a path that has no spaces because I had some weird issues with “spaced” paths)

  2. Add C:\Git\bin to the PATH variable. This is very important!! sh.exe and other dependencies are in this folder

  3. Now go to C:\Git\bin and add the following two files

gup.sh grp.sh 4. Open gup.sh in your favorite editor and insert

C:/Git/libexec/git-core/git-upload-pack.exe $* 5. Open grp.sh and insert

C:/Git/libexec/git-core/git-receive-pack.exe $* The $* essentially rips off the single quotes from the repository path argument, so a path that has spaces in it won’t work here either I guess

Basically we’re done now and all git operations from the client should work. For a clone you have to type

git clone -u 'sh gup.sh' ssh://[email protected]/path/to/myrepo.git or a push would be

git push --exec 'sh grp.sh' ssh://[email protected]/path/to/myrepo.git but that is not very elegant.

Cleaning things up:

  1. At first we want to get rid of the whole repo path by specifying a remote alias

git remote add origin ssh://[email protected]/path/to/myrepo.git Where “origin” would be the alias name

  1. Next we set the config for the git-upload-pack and git-receive-pack so we don’t have to reference the shell script all the time.

git config remote.origin.uploadpack 'sh gup.sh' and

git config remote.origin.receivepack 'sh grp.sh' That’s it. Now we can use the normal git commands without any additional parameters:

git clone origin git push origin master git pull origin ...

0

Trong trường hợp của tôi, tôi đã có an

echo $HOSTNAME 

trong .bashrc và .bash_profile mà tôi đang sử dụng để chẩn đoán một số sự cố kết nối. Điều này đã cho tôi thông báo:

fatal: protocol error: bad line length character: [VSR 

khi tôi cố gắng git pull từ repo ssh. Loại bỏ các tuyên bố echo làm cho mọi thứ hoạt động; '[VSR' chỉ là 4 ký tự đầu tiên từ số echo.