• git 如何新增分支以及提交合并


    git branch -a  查看所有分支

    git branch  分支名    新建本地分支

    git checkout  分支名   切换分支

    git checkout -b 分支名  切换并新建本地分支

    git pull origin 远程分支名:本地分支名    拉取远程分支与本地分支合并

    git push origin 远程分支名    提交本地代码到远程分支

    git push origin  本地分支名:远程分支名       提交本地分支到远程分支,若远程没有这个分支则新建

    git branch -d 分支名    删除本地分支

    git push origin --delete 远程分支名      删除远程分支

    git merge 分支名     分支合并

  • 相关阅读:
    QT中的列表容器
    QT中的Buttons
    QT中的常用控件
    [机房测试]弟娃
    CF1580C Train Maintenance
    [机房测试]数据恢复
    Sentry 监控
    Sentry 监控
    Sentry 监控
    Sentry 后端监控
  • 原文地址:https://www.cnblogs.com/cuiwan/p/11096922.html
Copyright © 2020-2023  润新知