Git commands aren't always easy. If they were, we would have these commands at our disposal. They would be super helpful for performing everyday tasks like creating or renaming a git branch, removing files, and undoing changes.
In this post, I’m focusing on major git commands that gets all (almost) your work fulfilled.
How to undo the most recent local commits in Git?
You can run
$ git reset HEAD~1You can even undo your commit but leave your files and your index:
$ git reset --soft HEAD~1If you want to permanently undo the commit and you have cloned some repository: To get commit id:
$ git log$ git reset --hard <commit_id>
$ git push origin <branch_name> -fHow to undo a public commit?
You can just run
$ git revert HEADHow to delete a Git branch locally and remotely?
- Deleting local branch
$ git branch -d <branchname>- Deleting remote branch
$ git push origin --delete <branch>How to revert to a particular commit?
To revert to a particular commit you'll need a commit id. To get a commit id just run
$ git logThen copy the commit id you want to rever back to. And then run:
$ git revert <commit-id>How Undo a git stash?
You can just run:
$ git stash popand it will unstash your changes.
In case you want to preserve the state of files (staged vs. working), use
$ git stash apply --indexHow to undo 'git add' before commit?
You can undo git add before commit with
$ git reset <file>To unstage all due changes
$ git resetHow to rename a local Git branch?
$ git branch -m <oldname> <newname>- To rename current branch
$ git branch -m <newname>How to discard unstaged changes in Git?
- For all unstaged files
$ git checkout -- .- For a specific file
git checkout -- path/to/file/to/revertNote: -- here to remove argument ambiguation.
How to delete all tags from a Git repository?
To delete remote tags simply do:
$ git tag -l | xargs -n 1 git push --delete originand then delete the local copies of tag:
$ git tag | xargs git tag -dConclusion
I hope this post saved your time and life. If you liked the post, feel free to share it to help others find it!
You may also want to read Getting Started with Git - A beginner's guide
You may also follow me on LinkedIn and X
💌 If you’d like to receive more tutorials in your inbox, you can sign up for the newsletter here.

Discussions