git常用命令

2019-01-22  本文已影响0人  YeeCoo

以下是对自己在工作中使用的Git命令的整理:

git init //在当下目录下创建本地仓库,并新建分支master
git remote add origin '你的git仓库https/ssh地址' //将本地仓库和远程仓库(如github仓库)关联起来,注意替换时请不要带上' '
git remote -v //查看关联的远程仓库
git push -u origin master //将本地仓库的当前分支推送到目标远程仓库,并新建master分支
git merge -s recursive -X theirs "Target branch"
example: git merge -s recursive -X theirs dev/hotfix
查看本地分支
git branch
  -a 查看本地及远程分支
  -m <old name> <new name> 重命名本地分支
  --set-upstream-to="target remote branch" 设置branch的远程追踪分支
上一篇下一篇

猜你喜欢

热点阅读