Latest Update brings Github error on pull, push, or sync

前端 未结 11 605
执念已碎
执念已碎 2020-12-25 12:39

In Visual Studio 2019, we have been using the GitHub extension successfully since before release. Now, all of the sudden, when we push, pull, or sync, we receive the follow

11条回答
  •  無奈伤痛
    2020-12-25 13:33

    You should check if 'C:\ProgramData/Git/config' actually exists. If it doesn't you can just create it and paste the following into the file:

    [core]
        symlinks = false
        autocrlf = true
        fscache = true
    [color]
        diff = auto
        status = auto
        branch = auto
        interactive = true
    [help]
        format = html
    [rebase]
        autosquash = true
    

    This worked for me.

提交回复
热议问题