zoukankan      html  css  js  c++  java
  • git pull“No remote repository specified”解决方法

    git pull“No remote repository specified”解决方法

    学习了:http://www.paopaoche.net/jiaocheng/77226.html

    修改“.git”文件夹里面的“config”文件的url就可以了:
    
    [core]
    
            repositoryformatversion = 0
    
            filemode = true
    
            bare = false
    
            logallrefupdates = true
    
            ignorecase = true
    
            precomposeunicode = false
    
    [remote "origin"]
    
            url = https://github.com/checkfrank/checkfrank.github.io.git
    
            fetch = +refs/heads/*:refs/remotes/origin/*
    
            pushurl = https://github.com/checkfrank/checkfrank.github.io.git
    
    [branch "master"]
    
            remote = origin
    
            merge = refs/heads/master
    
    把其中换成你项目的地址就可以了:
  • 相关阅读:
    HDU5873
    HDU5874
    HDU1565(状态压缩dp)
    POJ2774(二分+哈希)
    HDU4474
    HDU2602(背包)
    单链表
    POJ2503(hash)
    POJ1200(hash)
    顺序表
  • 原文地址:https://www.cnblogs.com/stono/p/9032648.html
Copyright © 2011-2022 走看看