zoukankan      html  css  js  c++  java
  • Git命令行技能小记

    查看Git分支:

    git checkout -b xxx origin/xxx 把远程的xxx分支拉到本地,取名xxx

    git branch -vv 查看本地分支详细信息

    git branch -rv 查看远端分支详细信息

    git fetch origin xxx 拉取远程分支xxx的代码到本地,但不会合并

    git merge xxx 把xxx分支的代码合并到当前分支

    git pull origin abc 把远端分支abc的代码拉到本地,并合并代码到当前的分支(上面两个操作fetch,merge的合并)

    git push origin xxx 把当前分支的最新代码推送到远程的xxx分支上。

    Git创建tag标签

    git tag "1.0.0" 创建tags

    git push --tags 推送tags到服务器

  • 相关阅读:
    3-2
    3-1
    2-11
    2-10
    2-7
    2-9
    springboot 使用undertow代替tomcat容器提高吞吐量
    springboot—JVM性能参数调优
    springbootDay3
    springboot_Mybaits_PageHelper
  • 原文地址:https://www.cnblogs.com/vokie/p/5356130.html
Copyright © 2011-2022 走看看