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…

Git, knowing a better world! a.k.a. “why I love Git”

Probably, some of you know the story of two British salesmen who were sent to Africa in the 1900’s to see if there were any opportunities to sell shoes. The salesmen wrote telegrams back to their colleagues in Britain and one of them wrote, “Situation hopeless. They don’t wear shoes.” And the other salesman wrote,…

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…

Some online editors for Markdown syntax

If you have worked with Github and you have created some Github pages probably “markdown syntax” is part of your daily work. This great language was created by John Gruber and Aaron Swartz and used in many systems like Github, Atlassian Bitbucket, Atlassian Stash, etc. the nice thing about this language is that it is really…