一、服务端新建项目
cd /home/git
mkdir test
cd test/
git init
echo ‘test’ > test.txt
git add .
git commit
#输入提交语
#新建分支
git branch android_dev_v1
二、客户端下载项目
git clone ssh://git@www.example.com:1022/~/test
输入密码
进入目录test
建立本地分支android_dev_v1追踪远端分支android_dev_v1