zoukankan      html  css  js  c++  java
  • visual studio 推送项目上自己的github账户报错

    https://blog.csdn.net/weixin_43129574/article/details/104753639?utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2~all~sobaiduend~default-3-104753639.nonecase&utm_term=vs2019%E6%8E%A8%E9%80%81github&spm=1000.2123.3001.4430

    1、报错信息: could not read Username for ‘https://github.com’: terminal prompts disabled
    在这里插入图片描述解决方法:
    打开项目所在的目录下.git文件夹,打开config文件。(注:git文件夹默认隐藏)
    修改[remote “origin”]下的
    url = https://github.com/hddevteam/ServerMonitor-for-UWP.git

    url = https://自己的用户名:自己的密码@github.com/hddevteam/ServerMonitor-for-UWP.git
    只需加用户名和密码 不用改其他的

    注:此方法只适用于在vs上推送到自己的账户上 如果推送到别人的账户是推不上去的
    解决方法引用自:https://blog.csdn.net/dw33xn/article/details/79951714?utm_source=blogxgwz9

    最终大boos    https://blog.csdn.net/dw33xn/article/details/79951714

    vs2017 向github上push提交时 could not read Username for

    错误

    Git failed with a fatal error.
    HttpRequestException encountered.
    ��������ʱ�����
    cannot spawn askpass: No such file or directory
    could not read Username for ‘https://github.com‘: terminal prompts disabled
    Pushing to https://github.com/hddevteam/ServerMonitor-for-UWP.git

    解决

      1. 打开项目所在的目录下.git文件夹,打开config文件。
      2. 修改[remote “origin”]下的
        url = https://github.com/hddevteam/ServerMonitor-for-UWP.git

        url = https://自己的用户名:自己的密码@github.com/hddevteam/ServerMonitor-for-UWP.git
        这里的“hddevteam”网上可能有不同的说法,这个是我们的团队名,个人开发的话是自己的用户名,一般不需要改。
         

    https://blog.csdn.net/qq_41059339/article/details/104802367?utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2~all~sobaiduend~default-2-104802367.nonecase&utm_term=vs2019%E6%8E%A8%E9%80%81github&spm=1000.2123.3001.4430

    通过修改.git/config文件修改[remote origin]下url为https://uesr.name:user.secret@github.com/******
    user.name 为用户名
    user.secret 为用户密码

  • 相关阅读:
    4. Android框架和工具之 android-async-http
    3. Android框架和工具之 xUtils(BitmapUtils)
    自定义多列排序:C++/Java实现
    Java套接字
    Java泛型
    线程同步之生产者消费者
    面向对象之深复制与浅复制
    谈谈多线程
    递归与尾递归
    单例模式:Instance
  • 原文地址:https://www.cnblogs.com/LuoEast/p/14017844.html
Copyright © 2011-2022 走看看