git使用

作者: 灬朴一生 | 来源:发表于2019-07-25 18:31 被阅读0次

    概述

    命令


    • 创建新仓库
    git init
    

    • 创建一个本地仓库的克隆版本
    git clone /path/to/repository
    

    • 克隆远程仓库
    git clone username@host:/path/to/repository
    git clone http://192.168.1.1:8080/repository.git
    
    

    • 查看本地分支
    git branch
    

    • 查看远程分支
    git branch -a
    

    • 创建分支并切换分支
    git checkout -b 分支名
    

    • 将本地分支关联到远程
    git branch --set-upstream-to=origin/dev dev
    

    • 删除远程分支
    git push origin --delete 分支名
    

    • 删除本地分支
    git branch -d 分支名
    

    • 更新
    git pull
    

    • 添加到本地待传区域
    git add 需要添加的内容
    

    • 提交并书写提交内容
    git commit -m "提交注释"
    

    • 上传到分支
    git push origin 分支名
    

    • 解决冲突

    local 选择本地版本后 弹出fileMerge工具 进行选择,保存后,命令行y

    git mergetool
    

    相关文章

      网友评论

          本文标题:git使用

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