服务器端搭建
sudo apt-get update
sudo apt-get install git-core
sudo adduser git
cd /home/git
su git
mkdir yourproject.git
git init —bare —shared yourproject.git
客户端:
非22端口的git clone
git clone ssh://git@hostname:port/.../xxx.git
创建文件并推送文件
cd xxx
touch hello
git add.
git commit -m "hello"
git push