Common Git Commands
Overview Git is a modern Source Control Management tool. It’s wildly popular since it provides a mechanisms to broadly share and merge code bases. This article lists the most common commands and by no means replaces the extensive documentation found here: git-scm.com/doc Commands Configure Git git config –global user.name “wassamz” git config –global user.email “wassam@email.com” […]