In this post, we're going discuss some very useful tricks on Git which literally can save your ass if you screwed up things on Git. Now, without any further ado, letβs get started ππ»ββοΈ
Fix last commit message
Have this ever happened to you that you actually want to commit "Final comment" but what you actually typed is "Final commment". Well, it's a shame if other people found out that your comment consists of three m's.
Thankfully there's a fix for this issue.
git commit --amend
Just open your project directory on your terminal and type the above command. This will open up your editor and allow you to make a change to that last commit message. This is a real life saver for me.
Change branch name
Let's suppose that, you want to create a branch named release but somehow you named your branch relaese. Don't panic, there's a solution for this too.
git branch -m relaese release
This will save your butt. But if you have already pushed this branch, then there are a couple of extra steps required. The solution for then will be, you need to delete the old branch from the remote and push up the new one.
git push origin --delete relaese
git push origin release
Added a wrong file in the repo
If you ever commit something in your repo that you shouldn't suppose to then you know how bad the situation is. It could be a rogue ENV file, a build directory, a picture of your dog (suppose π) that you accidentally saved to the wrong folder? Itβs all fixable.
If you haven't commited it yet then you only have to reset the file.
git reset /assets/img/unknown.jpg
If you have gone committing that change, no need to worry. You just need to run an extra step before:
git reset --soft HEAD~1
git reset /assets/img/unknown.jpg
rm /assets/img/unknown.jpg
git commit
This will undo the commit, remove the image, then add a new commit in its place.
Everything went wrong
This is your ace of spades! When whatever you do go wrong and you have no clue what to do then this is your solution. For example, when you have copy-pasted one too many solutions from Stack Overflow and your repo is in a worse state than it was when you started, then this is your lifesaver.
git reflog
It shows you a list of all the things you've done so far. It then allows you to use Git's time-traveling skills to go back to any point in the past.
When you run this command, it shows something like this:-
4gg9702 (HEAD -> release) HEAD@{0}: Branch: renamed refs/heads/relaese to refs/heads/release
4gg9702 (HEAD -> relaese) HEAD@{2}: checkout: moving from master to release
3c8f619 (master) HEAD@{3}: reset: moving to HEAD~
4gg9702 (HEAD -> feature-branch) HEAD@{4}: commit: Adds the client logo
3c8f619 (master) HEAD@{5}: reset: moving to HEAD~1
48b743e HEAD@{6}: commit: Adds the client logo to the project
3c8f619 (master) HEAD@{7}: reset: moving to HEAD
3c8f619 (master) HEAD@{8}: commit (amend): Added contributing info to the site
egb38b3 HEAD@{9}: reset: moving to HEAD
egb38b3 HEAD@{10}: commit (amend): Added contributing info to the site
811e1c6 HEAD@{11}: commit: Addded contributing info to the site
fgcb806 HEAD@{12}: commit (initial): Initial commit
Remember the left-side column, represents the index. If you want to go back to any point in the history, run the below command, replacing {index} with that reference, e.g. egb38b3.
git reset HEAD@{index}
Have some Git tricks your own? Let me know in the comments below.
Thanks for reading! If you found this helpful, donβt forget to share this with your friends and followers!
Top comments (54)
This is such a time saver...
Switching back and forth between two branches:
That's going to be very useful for me. Thanks for sharing this one.
-
in general is wonderful. I sometimes forget it exists forgit
,cd
, and others. It makes jumping around directories/branches so much faster.Hey, thanks for sharing.
Couple of notes:
is a bit confusing i'd suggest changing to:
Rename branch locally
Delete the old remote branch
Push the new branch, set local branch to track the new remote
Thanks for describing in detailed way π
I always forgot the command to push a delete branch on remote.
For the latter, I like to do:
:D
be frugal
git add .
@maestromac would freak out if he saw me doing this π
It hurts me even when I do it.
If you have untracked files
git add .
will add them, whereasgit add -a
will not.I like to use from time to time, to see where am I fetching/pushing.
Made few times a error where I would copy some dir to another dir and .git would get overwritten :)
I also like to use this to see where all my branches are tracking from:
It tells me which branches currently exist on my machine and which remotes and branches they are tracking. This is useful if you work with a team and you add their remotes to pull their branches down. It can get confusing to keep track of which branches are pointing where so you know where code is going to land when you run git push or where the changes are coming from if you do a git pull.
The branch with the asterisk is the one I currently have checked out.
Thanks for sharing.
Wow... git reflog is the best part of this article. Thanks!
ππ»
What is very important, that these commands rewrite history. And when you rewrite history, you actually create new commits and the old ones stay intact. So if you've pushed already, then after using any of these commands you won't be able to push without --force. And once something is shared it cannot be unshared. Be careful and know what these commands lead to.
I wouldn't call these hacks or tricks, though. Most of these is a regular workflow stuff.
But "hacks" sells more than "commands".
Never knew that one! Thanks!
ππ»
git commit --amend
will add anything in the staging area (or index; the thing files get to when usinggit add
), and let you change the commit message. If you only want to change the commit message leaving the index alone, you can usegit commit --amend --only
.When you want to remove a file from the latest commit, after using
git reset --soft
and co. you can usegit commit -C ORIG_HEAD
so you don't have to enter the same commit message.ππ»
An easier way to remove a file that has been added to the last commit by mistake:
This doesn't delete the file, though. Dropping '--cached' would delete it.
Great ππ»
git bisect
but that needs a whole article in itself. If you haven't heard of it, it's a way of quickly pinpointing at which point in history a commit was made, eg. you just noticed a bug, and want to find which code change caused it.Wow, thanks for sharing π
Some comments may only be visible to logged-in visitors. Sign in to view all comments.