找到了一个方法:需要修改下 .git/config的配置文件啊!!!
——【git fetch 无法获取远程分支?:https://blog.csdn.net/weixin_34166847/article/details/92109657】
编辑 .git/config 文件,把 fetch 改成下面第二种形式,不要写死master。
修改前: [remote "origin"] url = https://github.com/xxx/project.git fetch = +refs/heads/master:refs/remotes/origin/master 修改后: [remote "origin"] url = https://github.com/xxx/project.git fetch = +refs/heads/*:refs/remotes/origin/*
可是找不到 .git/config !
可能被隐藏了!
那么如何打开Mac文件夹的隐藏文件????
—— 【MAC 下 git 的config 修改 服务器地址:https://blog.csdn.net/yst19910702/article/details/97237270】
写到了方法:
在终端输入以下命令: defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder
——即可在 Finder 窗口中看到那些隐藏的文件和文件夹了。