美文网首页
简单的git 命令

简单的git 命令

作者: 一个假前端 | 来源:发表于2017-09-26 14:15 被阅读0次

    查看本地: git status

    添加提交暂存区:

    1) git add -A

    2) git commit -m "备注"

    远程拉去最新代码: git pull   【在同一分支上多人开发情况下===》》》每次提交之前一定要pull最新代码】

    提交到远程: git push  


    新建分支: git checkout -b 分支名

    推到远程: git push  --set-upstream origin  分支名

    删除本地分支:git branch -d 分支名   【注意不能删除当前分支 要切换到其他分支才能删除】

    删除远程分支: git push origin :分支名

    创建tag: git tag -a  tagName  -m "备注说明"

    推送tag: git push origin tagName

    删除本地tag: git tag -d tagName

    删除远程tag: git push origin :refs/tags/tagName

    将分支a合并到分支b上:

    1) git checkout b

    2) git merge a 

    3) git push 

    以上是我平时工作中需要操作git常用的命令,就随手记录下来 

    更多命令详情推荐看廖雪峰git 教程 介绍更加全面   廖雪峰 Git教程

    相关文章

      网友评论

          本文标题:简单的git 命令

          本文链接:https://www.haomeiwen.com/subject/ltrsextx.html