我从远程Git repo获得了一个项目。但是在新的一年之后,我只有本地副本,没有Git连接。 我的行为是: 1. git remote add origin 2. git remote -v告诉我我想要的东西 git checkout 4. git fetch AND它告诉我
您无权访问Bitbucket。请联系您的 管理员来解决此问题。
但我可以使用浏览器浏览它。问题是什么 - 告诉我PLZ。
YESSS。不是git fetch显示我所有的远程分支。情况如此 - 我在分支 origin / aaaa 并希望从服务器更新它(作为rebase) - soo
$ git pull 当前分支没有跟踪信息。 请指定要合并的分支。 有关详细信息,请参阅git-pull(1)。 git pull 如果您希望为此分支设置跟踪信息,可以使用以下命令: git branch --set-upstream-to = origin / aaaa
好的,我可以做到
git branch --set-upstream-to=origin/aaaa aaaa
也许它开始工作了 - 以及与其他分支机构的关系 - 将我所有的本地分支机构连接到远程仓库 - 只有一个接一个?
答案 0 :(得分:1)
答案 1 :(得分:0)
检查git config credential helper
的值(例如,在Windows上,您可以看到“manager”
如果是这种情况,请参阅“How to sign out in Git Bash console in Windows?”:
git credential-manager delete <url>
下面
git credential-manager delete https://github.com
或者你可以access the interface of the manager。
您不必删除可用于缓存用户密码的凭据帮助程序。