विशिष्ट प्रतिबद्ध गिट पर वापस लौटें

कोड उदाहरण

14
0

गिट में पिछले प्रतिबद्ध पर वापस कैसे लौटाएं

# This will destroy any local modifications.
# Don't do it if you have uncommitted work you want to keep.
git reset --hard 0d1d7fc32

# Alternatively, if there's work to keep:
git stash
git reset --hard 0d1d7fc32
git stash pop
# This saves the modifications, then reapplies that patch after resetting.
# You could get merge conflicts, if you've modified things which were
# changed since the commit you reset to.
8
0

गिट रोल वापस विशिष्ट प्रतिबद्ध करने के लिए

//Git Rollback to a specific commit via Mac terminal

//Navigate to project and open git log
cd projectname
git log --oneline

//Locate and checkout the desired commit ID
git checkout abc1234 . 

//(Type q to quit the git log)

//Stage All changes, commit with comment, and push to remote
git add -A
git commit -m "Revert commit: abc1234"
git push
2
0

एक विशिष्ट प्रतिबद्धता पर वापस कैसे जाएं

git revert <commit-hash>
1
0

वापस जाओ कुछ गिट करता है

git revert {commit_id}'
1
0

git खींच से पिछले प्रतिबद्ध

# This will detach your HEAD, that is, leave you with no branch checked out:
git checkout 0d1d7fc32
0
0

git खींच से पिछले प्रतिबद्ध

git checkout -b old-state 0d1d7fc32

इसी तरह के पन्ने

उदाहरणों के साथ समान पृष्ठ

अन्य भाषाओं में

यह पृष्ठ अन्य भाषाओं में है

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................