标签: git

2 篇文章

git服务端新建项目与分支
一、服务端新建项目 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.exampl…
git命令
1、配置用户名和邮箱 git config --global user.name "test" git config --global user.email "test@exemple.com" 2、克隆远端代码,此处为ssh cd workspace git clone ssh://git@exemple.com:22/~/test 3、查看分支…