美文网首页
常用git介绍

常用git介绍

作者: 开发界小学生 | 来源:发表于2019-03-27 15:04 被阅读0次

    git init 初始化仓库
    git status 查看文件状态
    git commit 提交文件到暂缓区
    git remote add origin xxx 添加远程仓库
    git push origin master 提交到远程仓库

    git tag -a 'x.x.x' -m '这个是文件描述'
    git push tags 提交所有tag
    git push origin x.x.x 提交固定tag
    git tag 查看所有tag
    git tag -d x.x.x 删除暂缓区tag版本
    git push origin :x.x.x 删除远端对应tag

    相关文章

      网友评论

          本文标题:常用git介绍

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