Lets get started publishing our VS2017 code to GitHub. If your IDE is not yet configured to use GitHub, read this article as a starter. There are two ways to start contributing to the open source community via GitHub : clone or fork an existing repository and start contributing and publish a new repo on GitHub. Creating a New Repository in GitHub Create a new blank solution. Make sure the Create New Git Repository option is checked.Once created, this will only reside on your local machine until we publish it online. Go ahead and add a simple console app and test before start committing. Note that VS2017 will automatically add a .gitignore file for the project. The Team Explorer pane should be displaying the new repo on the Local Repositories section. Double click on the repo to access the available actions. Changes - Use this to view code changes you have made in the project. Sync - Use these to initiate syncing between re...