git remote -v show
जब उत्पत्ति की बात आती है तो क्या रिटर्न देता है?
यदि उत्पत्ति गिथब की ओर इशारा करती है, तो स्थिति अद्यतित होनी चाहिए, और किसी दूरस्थ रेपो से आगे नहीं। कम से कम, Git1.6.5 के साथ मैं एक त्वरित परीक्षण के लिए उपयोग कर रहा हूं।
वैसे भी, इससे बचने के लिए, मास्टर शाखा के दूरस्थ रेपो को स्पष्ट रूप से परिभाषित करें:
$ git config branch.master.remote yourGitHubRepo.git
उसके git pull origin master
बाद git status
स्वच्छ स्थिति (आगे नहीं) वापस आना चाहिए।
क्यों? क्योंकि मूल उद्गम मास्टर (गिट पुल ओरिजनल मास्टर में शामिल) सिर्फ अपडेट नहीं होगा FETCH_HEAD
(जैसा कि चार्ल्स बैली अपने उत्तर में बताते हैं ), लेकिन यह आपके स्थानीय गिट रिपॉजिटरी के भीतर "दूरस्थ मास्टर शाखा" को भी अपडेट करेगा ।
उस स्थिति में, आपका स्थानीय मास्टर दूरस्थ मास्टर के "आगे" प्रतीत नहीं होगा।
मैं इसे git1.6.5 के साथ परीक्षण कर सकता हूं:
पहले मैं एक वर्करेपो बनाता हूं:
PS D:\git\tests> cd pullahead
PS D:\git\tests\pullahead> git init workrepo
Initialized empty Git repository in D:/git/tests/pullahead/workrepo/.git/
PS D:\git\tests\pullahead> cd workrepo
PS D:\git\tests\pullahead\workrepo> echo firstContent > afile.txt
PS D:\git\tests\pullahead\workrepo> git add -A
PS D:\git\tests\pullahead\workrepo> git commit -m "first commit"
मैं नंगे रेपो (जो कहीं से भी धक्का प्राप्त कर सकता हूं) बनाकर एक GitHub रेपो का अनुकरण करता हूं
PS D:\git\tests\pullahead\workrepo> cd ..
PS D:\git\tests\pullahead> git clone --bare workrepo github
मैं अपने काम करने वाले रेपो में एक मोडिफ़ जोड़ता हूं, कि मैं गितुब रेपो (रिमोट के रूप में जोड़ा गया) पर जोर देता हूं
PS D:\git\tests\pullahead> cd workrepo
PS D:\git\tests\pullahead\workrepo> echo aModif >> afile.txt
PS D:\git\tests\pullahead\workrepo> git ci -a -m "a modif to send to github"
PS D:\git\tests\pullahead\workrepo> git remote add github d:/git/tests/pullahead/github
PS D:\git\tests\pullahead\workrepo> git push github
मैं एक होम रेपो बनाता हूं, जिसे GitHub का क्लोन बनाया गया है, जिसमें मैं कुछ संशोधन करता हूं, GitHub में धकेल दिया गया:
PS D:\git\tests\pullahead\workrepo> cd ..
PS D:\git\tests\pullahead> git clone github homerepo
PS D:\git\tests\pullahead> cd homerepo
PS D:\git\tests\pullahead\homerepo> type afile.txt
firstContent
aModif
PS D:\git\tests\pullahead\homerepo> echo aHomeModif1 >> afile.txt
PS D:\git\tests\pullahead\homerepo> git ci -a -m "a first home modif"
PS D:\git\tests\pullahead\homerepo> echo aHomeModif2 >> afile.txt
PS D:\git\tests\pullahead\homerepo> git ci -a -m "a second home modif"
PS D:\git\tests\pullahead\homerepo> git push github
मैं तो पहले प्रयोग के लिए वर्करेपो क्लोन करता हूं
PS D:\git\tests\pullahead\workrepo4> cd ..
PS D:\git\tests\pullahead> git clone workrepo workrepo2
Initialized empty Git repository in D:/git/tests/pullahead/workrepo2/.git/
PS D:\git\tests\pullahead> cd workrepo2
PS D:\git\tests\pullahead\workrepo2> git remote add github d:/git/tests/pullahead/github
PS D:\git\tests\pullahead\workrepo2> git pull github master
remote: Counting objects: 8, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 6 (delta 1), reused 0 (delta 0)
Unpacking objects: 100% (6/6), done.
From d:/git/tests/pullahead/github
* branch master -> FETCH_HEAD
Updating c2763f2..75ad279
Fast forward
afile.txt | Bin 46 -> 98 bytes
1 files changed, 0 insertions(+), 0 deletions(-)
उस रेपो में, git स्टेटस ' origin
' के आगे मास्टर जिंग का उल्लेख करता है :
PS D:\git\tests\pullahead\workrepo5> git status
# On branch master
# Your branch is ahead of 'origin/master' by 2 commits.
#
nothing to commit (working directory clean)
लेकिन वह केवल origin
गितुब नहीं है:
PS D:\git\tests\pullahead\workrepo2> git remote -v show
github d:/git/tests/pullahead/github (fetch)
github d:/git/tests/pullahead/github (push)
origin D:/git/tests/pullahead/workrepo (fetch)
origin D:/git/tests/pullahead/workrepo (push)
लेकिन अगर मैं एक रेपो में अनुक्रम को दोहराता हूं, जिसमें जीथब (या बिल्कुल भी मूल नहीं है, तो बस एक दूरस्थ 'जीथब' परिभाषित) है, स्थिति साफ है:
PS D:\git\tests\pullahead\workrepo2> cd ..
PS D:\git\tests\pullahead> git clone workrepo workrepo4
PS D:\git\tests\pullahead> cd workrepo4
PS D:\git\tests\pullahead\workrepo4> git remote rm origin
PS D:\git\tests\pullahead\workrepo4> git remote add github d:/git/tests/pullahead/github
PS D:\git\tests\pullahead\workrepo4> git pull github master
remote: Counting objects: 8, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 6 (delta 1), reused 0 (delta 0)
Unpacking objects: 100% (6/6), done.
From d:/git/tests/pullahead/github
* branch master -> FETCH_HEAD
Updating c2763f2..75ad279
Fast forward
afile.txt | Bin 46 -> 98 bytes
1 files changed, 0 insertions(+), 0 deletions(-)
PS D:\git\tests\pullahead\workrepo4> git status
# On branch master
nothing to commit (working directory clean)
अगर मैं केवल origin
इशारा कर रहा था github
, status
git1.6.5 के लिए साफ होगा।
यह पहले के गिट के लिए एक 'आगे' चेतावनी के साथ हो सकता है, लेकिन वैसे भी, एक git config branch.master.remote yourGitHubRepo.git
परिभाषित स्पष्ट रूप से ध्यान रखना चाहिए, यहां तक कि गिट के शुरुआती संस्करणों के साथ भी।
git push
भी इसे हल करने के लिए प्रतीत होता है ("सभी को अप टू डेट") रिपोर्टिंग।