git基本命令

作者: 付__ | 来源:发表于2017-02-27 09:46 被阅读0次

    1.git初始化 git init

    2.工作区提交到暂缓区 git add .

    3.暂缓区提交到本地代码仓库 git commit -m "注释"

    4.本地提交到远程 git push origin master 

    5.添加本地标签 git tag -a '0.1.0'

    6移除本地标签 git tag -d '0.1.0'

    7添加远程仓库地址git remote add origin 地址

    8上送远程代码仓库 git push origin master

    9上送标签 git push --tags

    相关文章

      网友评论

        本文标题:git基本命令

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