git常用操作
Posted tomzhu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git常用操作相关的知识,希望对你有一定的参考价值。
从本地到远程主机
初始化目录
$ git init
连接远程主机
$ git remote add <主机名> <网址>
$ git remote add origin https://github.com/xxx/xxxx.git
删除远程主机
$ git remote rm <主机名> <网址>
重命名主机名
$ git remote rename <原主机名> <新主机名>
然后>>add commit push
本地更新到远程主机
$ git push <远程主机名> <本地分支名>:<远程分支名>
从远程主机到本地
克隆版本库
$ git clone <版本库的网址>
远程主机有更新时
取回更新,但不与本地合并
$ git fetch <远程主机名> [<特定分支名>]
查看分支
$ git branch –r 查看远程分支
$ git branch –a 查看所有分支
$ git branch name 创建分支
Checkout
创建分支、切换分支
$ git checkout name 切换分支
$ git checkout –b name 创建并切换分支
$ git merge name 合并分支到当前分支
取回更新并合并
$ git pull <远程主机名> <远程分支名>:<本地分支名>
以上是关于git常用操作的主要内容,如果未能解决你的问题,请参考以下文章