मान लें कि हम रिलीज़ / 1.0.5 की खोज कर रहे हैं
जब git fetch -all
है काम नहीं कर रहा है और आप दूरस्थ शाखा नहीं देख सकते हैं कि और git branch -r
नहीं इस विशिष्ट शाखा दिखा।
1. रिमोट (शाखाओं, टैग, ...) से सभी रिफ को प्रिंट करें:
git ls-remote origin
आपको दूरस्थ शाखा दिखानी चाहिए जिसे आप खोज रहे हैं।
e51c80fc0e03abeb2379327d85ceca3ca7bc3ee5 refs/heads/fix/PROJECT-352
179b545ac9dab49f85cecb5aca0d85cec8fb152d refs/heads/fix/PROJECT-5
e850a29846ee1ecc9561f7717205c5f2d78a992b refs/heads/master
ab4539faa42777bf98fb8785cec654f46f858d2a refs/heads/release/1.0.5
dee135fb65685cec287c99b9d195d92441a60c2d refs/heads/release/1.0.4
36e385cec9b639560d1d8b093034ed16a402c855 refs/heads/release/1.0
d80c1a52012985cec2f191a660341d8b7dd91deb refs/tags/v1.0
आउटपुट में नई शाखा 'रिलीज़ / 1.0.5' दिखाई देती है।
2. एक दूरस्थ शाखा लाने बल:
git fetch origin <name_branch>:<name_branch>
$ git fetch origin release/1.0.5:release/1.0.5
remote: Enumerating objects: 385, done.
remote: Counting objects: 100% (313/313), done.
remote: Compressing objects: 100% (160/160), done.
Receiving objects: 100% (231/231), 21.02 KiB | 1.05 MiB/s, done.
Resolving deltas: 100% (98/98), completed with 42 local objects.
From http://git.repo:8080/projects/projectX
* [new branch] release/1.0.5 -> release/1.0.5
अब आपके पास स्थानीय रूप से रेफरी भी हैं, आप इस शाखा की जांच (या जो भी) करते हैं।
काम हो गया!