Как да откажете записа

Примерен код

14
0

как да откажете записа

git reset --soft HEAD@{1} # delete the last commit keeping the changes
git reset --hard HEAD@{1} # delete the last commit removing the changes

git push --force origin master # delete the last commit also on remote branch
9
0

отмени поемане на git

git revert <commit hash>
6
0

отмени поемане на git

git revert <the_commit_hash>
4
0

git отмяна на фиксиране

# Reset the index and working tree to the desired tree
# Ensure you have no uncommitted changes that you want to keep
git reset --hard 56e05fced

# Move the branch pointer back to the previous HEAD
git reset --soft HEAD@{1}

git commit -m "Reverting to the state of the project at f414f31"
1
0

върни се към git с фиксиране

git reset --hard 4a155e5
Will move the HEAD back to where you want to be

Подобни страници

Подобни страници с примери

На други езици

Тази страница на други езици

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Íslensk
..................................................................................................................