I find it annoying that Visual Studio on file selection (single click) open the file in preview. This can be changed in the Options at Tools > Options > Environment > Tabs and Windows > Preview Tab
Month: March 2018
Git – Pushing existing files to a new empty repository
After having created an empty github repository, run the following commands in the directory which content you wish to push. git init git add –all git commit -m “Initial Commit” git remote add origin https://url-to-repository.git git push -u origin master