DEV Community

Quintiliano Ladanza
Quintiliano Ladanza

Posted on

I can't see all django github branches from a cloned repository into visual studio code

The issue might be with the remote repository URL or the configuration of your Git remote. Here's what you can try:
Remove the existing remote configuration: git remote remove origin

  1. Add the remote repository again with the correct URL: git remote add origin https://github.com/>/.git
  2. Make sure to use the correct URL for your remote repository.
  3. Fetch the latest branch information from the remote repository: git fetch
  4. List all branches, including remote branches: git branch -a
  5. Check if you can see the remote branches now.

Top comments (0)