fatal:'origin' does not appear to be a git repository fatal:Could not read from remote repository

天gitlab中遇到的问题:

当 git push origin branch_name时遇到报错如下:

fatal:'origin' does not appear to be a git repository

fatal:Could not read from remote repository

原因:

本地分支和远程分支断开连接

解决方法:

cd 本地分支里
1、git branch
               ——*master   只显示master

然后查看是否从上游拉了
2、git remote –v
             ——若什么都没有,则和上游已断联系,拉不了代码也推不了代码


加关联
3、git remote add origin ssh://git@gitlab*********************************.git(地址)


然后
4、git fetch origin

              ——会显示下拉的branch情况

                    格式为From ssh://gitlab.********************************

                  *  [new branch]         XXXXX        ->origin/XXXXX
 
再次检查远程仓库,显示对应的clone地址
git remote –v
——origin  git://github.com/schacon/ticgit.git (

你可能感兴趣的:(git,操作系统,开发工具)