Git 常用命令

作者: 崔鹏宇 | 来源:发表于2018-03-20 15:37 被阅读6次
    Git设置代理
       //查看当前代理  
      git config --global http.proxy
      git config --global https.proxy
      // 设置当前代理为 http://127.0.0.1:1080 或 socket5://127.0.0.1:1080
      git config --global http.proxy 'http://127.0.0.1:1080'
      git config --global https.proxy 'http://127.0.0.1:1080'
      git config --global http.proxy 'socks5://127.0.0.1:1080'
      git config --global https.proxy 'socks5://127.0.0.1:1080'
      // 删除 proxy
      git config --global --unset http.proxy
      git config --global --unset https.proxy
    
    Git分支操作
        //branch
     git branch 查看本地所有分支
     git branch -a 查看所有分支
     git branch -r  查看远程所有分支
     git branch –D (分支名 ) 删除分支
     //checkout
     git checkout -dev 切换到本地dev分支
     git checkout -b dev 建立一个新的本地分支dev
     git checkout --track origin/dev 切换到远程dev分支
     git branch -m 原名 新     更改分知支名
     //diff 
     git diff master 分支名 (比较主分支和另一个分支的区别) 
    
    
    Git合并
    git merge origin/dev 将分支dev与当前分支进行合并
    
    Git 配置
    git config --list  查看当前用户信息
    1. $ git config --global user.name "username” 配置用户名
    2. $ git config --global user.email email 配置邮箱  
    cd ~/.ssh  进入ssh
    ls 查看ssh文件
    ssh-keygen -t rsa -C “email”  创建密钥
    ssh -T git@github.com 查看是否创建成功
    

    相关文章

      网友评论

        本文标题:Git 常用命令

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