美文网首页
git 实战

git 实战

作者: 依哥 | 来源:发表于2016-11-07 17:00 被阅读0次

    git 实战中遇到问题总结!

    • 1 git reset --hard HEAD^ 切换到上一个版本
    • 2 git reset --hard HEAD^^ 切换到上上一个版本
    • 2 git reset --hard HEAD~100 切换到上n版本
    • 4 git reset --hard 3628164 切换到某一指定版本
    • 5 git reset 3628164 将目前commit的所有代码带到 3628164 版本

    • 6 git reset 3628164 --hard 回到上一个版本不存到仓库
    • 7 git add -u 添加修改的文件到git仓库
    • 8 git status -s 查看git仓库状态
    • 9 git commit -m 'aa' 提交本地git仓库
    • 10 git push origin feature/wgp/foo 提交远程git仓库
    • 11 phpcheck mall/page/qiang/ActionController.php 检测
    • 12 phpfix mall/page/qiang/ActionController.php 修复
    • 13 git init --bare 创建一个 .git 仓库
    • 14 git clone gitserver/ client1 克隆gitServer 到 client里边去!
    • 15 git remote -v 查看远程
      )}GO9~EY7_WZPZ9YRU3CB49.png
    • 16
        git remote add origin git@github.com:wanggaopeng/gaopeng.gitgit 
        push -u origin master
    

    git remote removegit remote rename

    git remote rename origin local 把origin修改成local
    git remote remove iosw 把iosw删除
    git remote rename wang origin 把wang修改成origin
    git help remote

    2016-11-14_111406.png 2016-11-14_112123.png
    • 16 git branch 查看当前分支
      git branch -v
    • 17 git branch -r查看远程分支
    • 18 git push origin master:master 本地分支推向远程master分支 可简写成git push origin master
      git push origin master:devlop 本地分支推向远程devlop分支
      git push origin :devlop 本地空分支推向远程devlop分支 =删除远程devlop分支。
    • 19 git pull origin master:master 将远程分支pull到本地,第一个master 表示远程的,第二个master表示本地。可简写成git pull origin master

    git push 有冲突报的错!


    1.png
    > git pull origin master
    Automatic merge failed; fix conflicts and then commit the result.
    
    2016-11-15_114341.png

    git 操作

    1. git reset 3628164
    2. git status -s 查看状态
    3. git add . 添加到git仓库
    4. git commit --amend 提交到本次commit
    5. git push origin develop -f 强制推到远程仓库。

    git fetch origin feature/wgp/foo:feature/wgp/foo

    • 将远程分支fetch到本地

    王高鹏博客

    Tables Are Cool
    col 3 is right-aligned $1600
    col 2 is centered $12
    zebra stripes are neat $1

    **编辑奖品价格区间管理 **

    public function editPrize(){                                                
          $id = $this->get('id');                                                
          $where['interval_id'] = $id;                                           
          $orderApi = ANew('order');                                             
          $price_edit = $orderApi->getPriceRange($where);                        
          $this->set('price_edit',$price_edit);                                  
          $this->setView('guanli/orders/order_setting/tpl/add_prize_price.phtml');
    }  ```

    相关文章

      网友评论

          本文标题:git 实战

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