# 初始化本地仓库 git init # 添加文件至缓冲区 git add . # 提交至本地仓库 git commit -m init # 添加远程仓库 git remote add origin xxx # 推送至远程仓库 git push origin master
git clone -b dev http://192.168.0.1/service/tmall.git
说明: 从 http://192.168.0.1/service/tmall.git 拉取 dev 分支。
说明:
从 http://192.168.0.1/service/tmall.git 拉取 dev 分支。
参考文献: git clone 指定分支 拉代码 (opens new window)
参考文献:
git clone 指定分支 拉代码 (opens new window)
← VMware 处理器设置 Git .gitignore 文件编写规则及常用模板 →