/* eslint no-console: [“error”, { allow: [“warn”, “error”, “log”] }] */
Nuget File Locations
NuGet File Locations
NuGet Cache
Stores downloaded NuGet packages (.nupkg).
- %LocalAppData%\NuGet\Cache
- %UserProfile%\.nuget\packages
NuGet Configuration
The NuGet.Config file stores user defined NuGet package sources, credentials and proxy settings. The default location for this file is:
- %AppData%\NuGet\NuGet.Config
Machine Wide NuGet Configuration
Machine wide configurations are used to define NuGet package sources specific to a machine or a particular IDE, such as Visual Studio.
- %ProgramData%\NuGet\Config
Git disable ssl check.
You probably don’t want to do this, but if you really have to
git config http.sslVerify "false"
Export Git Repository to zip.
git archive --format zip --output /full/path/to/zipfile.zip master
Clear cached Git Credentials on Windows.
git config credential.helper store