Github Contributing Guide

All GUI clients for GIT you can find here. For Windows user I highly recommended open source client Git Extenshions.

If you want to contribute take this 5 simple steps for 5 minutes:

  1. Sign up on Github.
  2. Configure two factor authentication for security reason.
  3. After that got to project page and fork it using green button Fork.
  4. Clone your forked project to local computer:
    git clone https://github.com/__your_account__/sqlserver-kit.git
  5. Configure upstream repository with this commands:
    git remote -v
    git remote add upstream https://github.com/ktaranov/sqlserver-kit

For actualizing your repo you could use simple command:

git fetch upstream
git checkout master
git merge upstream/master