How To download YouTube Video To My Computer?

Youtube has become the ultimate source of learning and entertainment, you can find almost everything which will help you to become what you want to be in true sense and all for free. You can learn anything from Guitar to Salsa moves, from cooking your favourite recipe to fix your phone. Also, these days, I hardly switch on to television as I can watch everything … Continue reading How To download YouTube Video To My Computer?

How do I edit an incorrect commit message in Git?

To change the commit message git commit –amend -m “New commit message” Used to amend the tip of the current branch. Prepare the tree object you would want to replace the latest commit as usual (this includes the usual -i/-o and explicit paths), and the commit log editor is seeded with the commit message from the tip of the current branch. The commit you create … Continue reading How do I edit an incorrect commit message in Git?

How to undo the last Git commit?

Undoing a commit seems little difficult if you don’t know how to do it. But it’s actually pretty simple, here is simple commands for Undo a commit and redo $ git commit – This is what you want to undo $ git reset –soft HEAD^ – This is most often done when you remembered what you just committed is incomplete, or you misspelled your commit message, or … Continue reading How to undo the last Git commit?