zoukankan      html  css  js  c++  java
  • Git命令本质

    引言

    这是以前学习Git时的个人理解,算是速查手册吧

    Command Essential
    base^n 选择base分支的第n个父分支
    base~n 选择base的第n级父结点
    git commit --amend 产生一个已提交结点的兄弟结点
    git tag label to 为to结点赋与标签label
    git branch -f from to 将分支from指向to
    git merge from 将分支from合并到当前活动分支
    git rebase to from 拷贝分支from(缺省为当前活动分支),接续到分支to的后面
    git reabse -i base_offset 对base第offset个父结点以下的结点进行交互排序
    git cherry-pick c1 c2 ... 撷取结点c1、c2等接到当前活动分支之后
    git reset base_offset 将分支base的指向回溯到其第offset级父结点
    git revert base_offset 拷贝一份base第offset级父结点,接续到当前结点之后
    repo/branch 远程仓库repo的branch分支
    git branch -u remote local 将远程分支remote绑定到本地已有分支local
    git checkout -b local remote 新建本地分支local,绑定至远程分支remote
    git pull --rebase 采取rebase而不是默认的merge模式,拉取远程分支
    git fetch repo remote:local 下载远程remote分支的副本到本地的local分支(非活动分支),省略remote时将在本地创建local分支
    git pull repo remote:local 先fetch再merge入当前活动分支
    git push repo local:remote 将本地分支local推送至远程仓库repo的remote分支,省略local时将会删除远程分支
  • 相关阅读:
    js中url跳转问题
    代码走查整理总结
    关于前后端分离跨域请求问题
    mysql大小写敏感问题
    初识react
    mysql测试
    关于使用Ajax请求json数据,@RequestMapping返回中文乱码的几种解决办法
    ssm实现分页查询
    js表单验证处理和childNodes 和children 的区别
    javaScript数组操作整理
  • 原文地址:https://www.cnblogs.com/Abbey/p/12770001.html
Copyright © 2011-2022 走看看