I got a project from remote Git repo. But after New Year I has only there local copies and no Git connection. My actions were: 1. git remote add origin 2. git remote -v shows me what I want 3. git checkout 4. git fetch AND THIS it shows me
You do not have permission to access Bitbucket. Please contact your administrator to resolve this issue.
But I can can navigate it with my browser. Whats the problem - tell me plz.
Yesss. not git fetch shows me all remote branches. THen the situation - i'm in branch origin/aaaa and want to update it from server (as rebase) - soo
$ git pull There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull If you wish to set tracking information for this branch you can do so with: git branch --set-upstream-to=origin/ aaaa
Ok I can do
git branch --set-upstream-to=origin/aaaa aaaa
Maybe it starts to work - and what with other branches - hoew to link all my local branches to remote repo - only one by one?