0

I've tried several git commands, but I can't seem to be able to see the remote branch that I've created using azure devops. Branch name is pbi7642_task7917.

With git branch -av | Select-String task7917 , on my machine, in powershell, I don't see the new branch.

Johan Doe
  • 33
  • 1
  • 9

1 Answers1

1

git fetch --all did most of the trick.

Subsequently git checkout remotes/origin/pbi7642_task7917 and git switch -c pbi7642_task7917 got me going.

I was helped by similar question Git: Merge a Remote branch locally.

SwissCodeMen
  • 4,222
  • 8
  • 24
  • 34
Johan Doe
  • 33
  • 1
  • 9