Digital Marketing

git - How to revert uncommitted changes

# Revert changes to modified files.
git reset --hard
# Remove all untracked files and directories. (`-f` is `force`, `-d` is `remove directories`)
git clean -fd

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database