# Revert changes to modified files.git reset --hard
# Remove all untracked files and directories.# '-f' is force, '-d' is remove directories.git clean -fd
ABC@ABC-PC MINGW64 /c/xampp/htdocs/pod_admin (master)$ git statusOn branch masterYour branch is up-to-date with 'origin/master'.
Changes not staged for commit:(use "git add <file>..." to update what will be committed)(use "git checkout -- <file>..." to discard changes in working directory)
modified: application/controllers/Drivers.phpmodified: application/views/drivers/add.phpmodified: application/views/drivers/load_driver_info.phpmodified: uploads/drivers/drivers.xlsx
no changes added to commit (use "git add" and/or "git commit -a")
ABC@ABC-PC MINGW64 /c/xampp/htdocs/pod_admin (master)$ git checkout .
ABC@ABC-PC MINGW64 /c/xampp/htdocs/pod_admin (master)$ git statusOn branch masterYour branch is up-to-date with 'origin/master'.
nothing to commit, working tree clean
Changes to be committed:(use "git restore --staged <file>..." to unstage)
Changes not staged for commit:(use "git add <file>..." to update what will be committed)(use "git restore <file>..." to discard changes in working directory)