« ImageMagick snippet: batch crop, dither, and guillotine | Home | Creating a service to run a systemd-nspawn server »
Git refuses to discover new remote branches
By admin | January 23, 2021
In addition to the excellent suggestions at https://stackoverflow.com/questions/1783405/how-do-i-check-out-a-remote-git-branch, take a look in .git/config and make sure fetch is specified to only fetch the master branch:
[remote "origin"] url = git@github.com:example/coolproject.git fetch = +refs/heads/master:refs/remotes/origin/master # bad
You’ll want to change the fetch line to fetch all branches instead:
[remote "origin"] url = git@github.com:example/coolproject.git fetch = +refs/heads/*:refs/remotes/origin/*
If you found this article helpful or interesting, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more useful and interesting articles!
Topics: Linux | 1 Comment »
November 12th, 2024 at 15:55
… [Trackback]
[…] Read More on to that Topic: compdigitec.com/labs/2021/01/23/git-refuses-to-discover-new-remote-branches/ […]