gitee
github
GitHub: Let’s build from here · GitHub
windows
- 直接启动 sshd,报错:
sshd re-exec requires execution with an absolute path - 提示需要使用绝对路径。使用 which sshd 获取绝对路径,使用最对路径启动,报错
sshd: no hostkeys available – exiting. - ssh-keygen -A
此命令会在 /etc/ssh 目录下,生成 8 个文件。 - 修改服务器 /etc/ssh/sshd_config 配置,允许密码登陆。
PasswordAuthentication yes
- git init --bare test.git
- git clone fangyunjiang@192.168.137.1:/d/gittest/test.git test
macosx
1.系统偏好设置->共享->远程登录->打开->仅这些用户添加需要访问的用户
2. sudo /usr/sbin/sshd
如果报错
sudo ssh-keygen -t dsa -f /etc/ssh_host_dsa_key
sudo ssh-keygen -t rsa -f /etc/ssh_host_rsa_key
3. 开启服务后执行
ssh fangyunjiang@localhost
4. git init --bare test.git
5. git clone fangyunjiang@192.168.137.1:/d/gittest/test.git test