• 免费git服务器以及使用过程中遇到的问题


    1. git rm *,git pull会先git fetch后再git merge,更安全的做法是git fetch修改后再push;git remote rm origin

    2. https://bitbucket.org/ 为US免费git服务器,现在可以支持5个工程?没确定;

        https://hehao3344@bitbucket.org/hehao3344/mkit.git

        https://hehao3344@bitbucket.org/hehao3344/p2p.git

    3. 如果git pull出现类似于如下错误

    $ git pull
    Password:
    You asked me to pull without telling me which branch you
    want to merge with,and'branch.master.merge'in
    your configuration file does not tell me, either.Please
    specify which branch you want to use on the command lineand
     try again (e.g.'git pull <repository> <refspec>').
    See git-pull(1)for details.

    If you often merge with the same branch, you may want to
    use something like the following in your configuration file:

    [branch"master"]
    remote=<nickname>
    merge=<remote-ref>

    [remote"<nickname>"]
    url=<url>
    fetch=<refspec>

    See git-config(1)for details.

    我们可以通过修改配置文件 .git/config

    添加如下几行:

    [branch "master"]
        remote = origin
        merge = refs/heads/master

    这时候,pull时会查找到正确的url;


    如果不配置,则需要打如下命令

    git pull origin master;


    3 个地址:

    git clone https://hehao3344@bitbucket.org/hehao3344/p2p-server.git

    git clone https://hehao3344@bitbucket.org/hehao3344/p2p-client.git

    git clone https://hehao3344@bitbucket.org/hehao3344/mkit.git




  • 相关阅读:
    带下拉子菜单的导航菜单
    如何使用myFocus插件制作焦点图效果
    将博客搬至CSDN
    《转》二进制与三进制的那些趣题
    二叉树遍历 (前序 层次 == 深度 广度) 层次遍历
    数组全排列 knuth 分解质因数
    堆排序
    双向快速排序
    二路归并排序
    字符串的排列
  • 原文地址:https://www.cnblogs.com/dyllove98/p/3187082.html
Copyright © 2020-2023  润新知