git体验

作者: 多余的午宴 | 来源:发表于2019-03-11 09:36 被阅读0次

    1. git库迁移

    git clone --bare <old git url>
    cd <git project name>.git
    git push --mirror <new git url>
    

    2. 更改本地远程源

    1. 删除本地远程源:git remote remove origin
    2. 添加新的远程源:git remote add origin <new git url>
    3. 提交代码:
      git add -A
      git commit -m "push init"
      git push -u origin master
      

    3. 提交一个pr

    $ git checkout -b dev
    $ git config user.name xxxx
    $ git config user.email xxx@xx.com
    ## 做一系列的修改
    $ git add .
    $ git commit -m "comment"
    $ git push origin dev:dev
    

    4. 本地切换至远程某一分支

    $ git checkout --track origin/dev
    

    相关文章

      网友评论

          本文标题:git体验

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