Horje
git return to last commit Code Example
git revert commit
# 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"
git return to last commit
git log
    commit 101: bad commit    # Latest commit. This would be called 'HEAD'.
    commit 100: good commit   # Second to last commit. This is the one we want.
To restore everything back to the way it was prior to the last commit, we need to reset to the commit before HEAD:

git reset --soft HEAD^     # Use --soft if you want to keep your changes
git reset --hard HEAD^     # Use --hard if you don't care about keeping the changes you made
how to revert to last git commit
git checkout . #This will get rid of all uncommited change
how to revert to log in git
git revert --no-commit 0766c053..HEAD
git commit




Shell

Related
Error: pg_config executable not found."fedora" Code Example Error: pg_config executable not found."fedora" Code Example
install pandas in python Code Example install pandas in python Code Example
how to install pandas Code Example how to install pandas Code Example
pandas pip install Code Example pandas pip install Code Example
windows give an ip address a name Code Example windows give an ip address a name Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11