git 常用命令
2022-05-13 本文已影响0人
翟小乙
- 克隆:
- git clone 代码仓库地址
例如: git clone http://192.168.22.62:84/scm/git/ceshiDemo
- git clone 代码仓库地址
- 指定用户名,密码克隆:
- git clone http://用户名:密码@地址
例如: git clone http://用户名:密码@192.168.22.62:84/scm/git/ceshiDemo
- git clone http://用户名:密码@地址
- 查看分支:
- git branch -a 查看所有分支
- 切换为远程某分支:
- git checkout -b 本地分支名 远程分支名
- 新改代码需要提交:
git add .
git commit -m '修改bug'
git push -u origin 分支名