Git ssh not working on windows.

Posted on Leave a commentPosted in Git

Make sure you have putty installed on windows. Configure Windows Environment Variable Type Environment into your Windows 10 search bar. Otherwise, open up System Properties / Advanced System Settings and find your Environment Variables. Add a new System variable Variable Name: GIT_SSH Variable Value: full path to plink.exe file (you may also have pageant.exe and puttygen.exe in the same folder). Mine was: C:\Program […]

Git Commands

Posted on Leave a commentPosted in Git

 Create a new Git repository git init Inspect the contents of the working directory and staging area git status Add files from the working directory to the staging area git add Show the difference between the working directory and the staging area (the commit HEAD) git diff Permanently store file changes from the staging area […]

Git Recap

Posted on 2 CommentsPosted in Git

Intro This page is mainly for my notes when I haven’t done git in a while, more than an actual tutorial. Prerequisites Choose which git provided you wish to go with, I went with bitbucket. You should have git installed at this point. Change into the top level directory , if my git repository is […]