zoukankan      html  css  js  c++  java
  • Git 耍不起来啊

    1.  $ git clone https://******.git

    Cloning into 'dt-engine-server'...
    fatal: unable to access 'https://******.git/': Failed to connect to 192.30.252.128 port 443: Timed out

    2. IDEA git pull

     Git Pull Failed: fatal: Could not read from remote repository.

    http://blog.csdn.net/myhuashengmi/article/details/52227615

    3. git 提交代码

    • 如果只有一个master分支

    1)git clone ***.git

    2) 把自己的代码src文件夹覆盖过来,相同的文件手动merge

    3)git add . (git pull origin 再刷新一下代码)

    4) git commit -m 'your comment'

    5) git push 

    • 如果更新的是已有的分支

    1)git clone -b branchname ***.git

    2)  把自己的代码src文件夹覆盖过来,相同的文件手动merge

    3)  git add .

    4)  git commit -m 'your comment'

    5)  git push origin branchname

  • 相关阅读:
    web测试方法总结
    我认为测试应该掌握的SQL语句
    monkey(1)
    冒烟测试
    PC客户端测试总结
    常见测试点总结
    测试基本概念
    测试主要环节
    手机app常见bug积累
    MySQL面试题集锦
  • 原文地址:https://www.cnblogs.com/skyEva/p/6226767.html
Copyright © 2011-2022 走看看