Some useful Git commands

Hi friends, Today I would like to share you a list of Git commands that I consider really useful when we work with this great version control  system. Enjoy it! Configuring your Git // Disable autocrlf to avoid warnings in command line git config –global core.autocrlf false // Set username and email (global) git config…

How to delete a remote Git tag

If some day for any reason you want to remove a tag because maybe you make a mistake and you want to move your Git tag to another commit, then you are going to need: Delete the tag from local repository Remove the tag in the remote repository For doing these operations, just execute next…

How to check SHA1 digest in Mac OS X

Hi! Today, I just want to share you an easy way to check the SHA1 digest using a the terminal in Mac OSX. This command is really useful when you need to know if any file -for example an ISO- was downloaded correctly. Step 1. Open a terminal. Step 2. Type next command and wait…