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 authenticate in a Linux server without password (configuring SSH keys in MAC OS X or any UNIX-like Operating System)

When you need to connect to several servers because you need to share, update or syncronize a set of files, a common situation is authentication process with the server, if you do this several times in a day, it could be a little hard to type or input your password every time that you are…