How to add staged changes to your previous commit in Git? Forgot to add some files or changes in your last commit? Or remember that last thing you needed to do after you have already committed? We have a solution!
How to add changes in one file to two different commits in Git? Let's say you were working on an update but needed to push some partial code. To do it, you can quickly call the interactive add feature of git and select the portion of code you want.
How to get your changes back after an accidental hard reset in Git? If you made `git reset --hard` by mistake, possibilities are you can still get your commit back, as git holds a log of everything for a few days.
How to change the URL of a remote Git repository? Let's say if you set the origin as the wrong repository URL of your git project, and you want to change the remote URL of the origin to the correct one.
What did I just commit? So imagine that you blindly committed some changes with `git commit -a`, and you are not satisfied with the particular content of the commit you just created.
How to rename a local and remote branch in Git? Shit Happens!! Sometimes, you named a branch wrong or want to make it more meaningful. Doing it locally is quite simple.
How to remove a file from the previous commit? Sometimes, you would want to remove a specific file or part of the code from your last commit.
How to check for conflict markers in git? While working with teams, there is a good chance of screw-ups. There can be any mistake. One of the most common is leaving conflict markers somewhere. Finding these markers can be tedious if you have a large repository.
How to find the commit that broke something after a merge in Git? Tracking the commit that introduced a bug after a big merge can be time-consuming. Luckily git offers a great binary search facility in the form of `git-bisect.`
How to revert pushed commit from the repo? Despite all the fixes you try, faulty commits occasionally make it into the central repository. Still, this is no reason to despair, since git offers an easy way to revert single or multiple commits.