美文网首页
git 基本命令

git 基本命令

作者: 江火渔枫 | 来源:发表于2016-03-26 12:09 被阅读14次

    提交

    git add index.html                   #把修改的文件添加到暂存区
    git commit index.html -m "注释"       #提交
    git push origin master               #推送到服务器
    

    查看

    git status          查看当前状态
    
    git branch          查看本地所有分支
    git branch -r       查看远程所有分支
    git branch -a       查看所有分支
    

    创建分支

    git checkout -b new-branch
    相当于
    git branch iss53
    git checkout iss53
    
    git push origin new-branch
    git branch --set-upstream-to=origin/new-branch new-branch
    

    删除分支

    git push origin :del-branch
    git branch -d <BranchName>删除本地分支
    git push origin --delete <BranchName> 删除远程分支
    

    回滚 撤销

    https://blog.csdn.net/ligang2585116/article/details/71094887
    

    相关文章

      网友评论

          本文标题:git 基本命令

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