美文网首页
常用的命令

常用的命令

作者: 昨天剩下的一杯冷茶 | 来源:发表于2019-08-03 11:01 被阅读0次

    1、 查看历史记录
    git log


    image.png

    git log --pretty=oneline


    image.png

    git log --oneline

    image.png

    2、 在Terminal 或者git控制条 执行 回退到某个版本命令
    git reset --hard 139dcfaa558e3276b30b6b2e5cbbb9c00bbdca96

    3、 提交代码
    git add --all
    git commit -m “修改项目代码"
    git push

    4、 打标签
    标签名字B1.0.0
    SHA:b055424e2bb83bd0020b65b780af3a1a42c13960
    说明:this is 1.0

    git tag -a B1.0.0 -m "this is 1.0" b055424e2bb83bd0020b65b780af3a1a42c13960
    git push origin --tags
    
    

    相关文章

      网友评论

          本文标题:常用的命令

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