How to run stash in Github Desktop?

GitHub Desktop for Windows doesn’t support stash. The only stash-like feature it has is that it will allow you to switch branches if you have uncommited changes. Source Update: GitHub Desktop V2.0.0 now supports stash (Issue 6107). Now when switching branches, you’ll be prompted to either leave your changes on the current branch (stash) or … Read more

Unable to pull/push in git repository

When using https you will need to supply password or using a certificate. In your case looks like the certificate is not a valid one. Try fixing it like this by telling git where to find the certificate: // Add the certificate to your configuration file git config –system http.sslcainfo “C:\Program Files (x86)\git\bin\curl-ca-bundle.crt” Alternatively, you … Read more

I can’t find my git.exe file in my Github folder

The git.exe from Github for windows is located in a path like C:\Users\<username>\AppData\Local\GitHub\PortableGit_<numbersandletters>\bin\git.exe1 You have to replace <username> and <numbersandletters> to the actual situation on your system. In Android Studio you can specify the path to the Git executable at File->Settings…->Version Control->Git->Path to Git executable. Here you have to include the actual executable name. As … Read more