Getting Started with GitHub

less than 1 minute read

Tips and Tricks for git

GitHub is a internet hosting provider for software development and version control using git. It provides distributed version control, source code management, issue tracking and many more. This is now the number one version control provider. Here, I will discuss on tips and tricks of git

  • Discard unstaged changes in Git?
    For all unstaged files in current working directory use:
     git checkout -- .