git常用命令
设置用户信息
git config --global user.name "zhanghongliang"
git config --global user.email "zhanghongliang@gitlab.com"
分支
- 创建分支:git branch mybranch
- 切换分支:git checkout mybranch
- 切换到master分支:git checkout master
- 创建并切换分支:git checkout -b mybranch 取远程分支并分化一个新分支:git checkout -b mybranch origin/mybranch
下载代码到本地
git clone git@172.30.78.86:k8sdepoy/metadata-server.git
将代码提交到远程仓库
git add README.md
git commit -m "add README"
git push -u origin master