From b42fa02bb0a0eabfc66e1fc6b8cb3bcc876c39cd Mon Sep 17 00:00:00 2001 From: Dale Wyttenbach Date: Wed, 7 Mar 2018 10:40:09 -0600 Subject: [PATCH] New page as suggested by Johannes Schindelin --- Using-sshd-to-host-a-git-server.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Using-sshd-to-host-a-git-server.md diff --git a/Using-sshd-to-host-a-git-server.md b/Using-sshd-to-host-a-git-server.md new file mode 100644 index 0000000..b543769 --- /dev/null +++ b/Using-sshd-to-host-a-git-server.md @@ -0,0 +1,11 @@ +Everything you need to host a git server on Windows is included with Git for Windows. + +### Configure sshd +### Run sshd +A simple way to start sshd automatically when you log in is to put a .BAT script in: +%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup +Mine contains: +`cd /d %GIT_HOME%` +`%GIT_HOME%\usr\bin\sshd.exe` +### Test sshd +### Connect with git \ No newline at end of file