- Create a folder at the root of your user home folder
(Example:
C:/Users/uname/) called.ssh. - Create the following files if they do not already exist (paths begin from the root of your user home folder):
.ssh/config
| [branch] | |
| autosetuprebase = always | |
| [core] | |
| autocrlf = false | |
| ignorecase = false | |
| [push] | |
| default = simple | |
| [pull] | |
| default = simple |
| function Create-Directory($dirPath) { | |
| if (!(Test-Path $dirPath)) { | |
| New-Item -ItemType directory -Path $dirPath | |
| } | |
| } |
| Get-AppxPackage *3dbuilder* | Remove-AppxPackage | |
| Get-AppxPackage *bingfinance* | Remove-AppxPackage | |
| Get-AppxPackage *bingnews* | Remove-AppxPackage | |
| Get-AppxPackage *bingsports* | Remove-AppxPackage | |
| Get-AppxPackage *bingweather* | Remove-AppxPackage | |
| Get-AppxPackage *getstarted* | Remove-AppxPackage | |
| Get-AppxPackage *officehub* | Remove-AppxPackage | |
| Get-AppxPackage *onenote* | Remove-AppxPackage | |
| Get-AppxPackage *people* | Remove-AppxPackage | |
| Get-AppxPackage *photos* | Remove-AppxPackage |
| /** | |
| * @param {Number} value | |
| * @param {Number} [bitCount = 0] | |
| * | |
| * @returns {String} binary representation of the two's complement of `value`. | |
| */ | |
| function twosComplement(value, bitCount) { | |
| let binaryStr; | |
| if (value >= 0) { |
| #---------------------------------------# | |
| # Project Ignores # | |
| #---------------------------------------# | |
| # output | |
| /.temp | |
| /.tmp | |
| /build | |
| /dist |
| # Project | |
| * text eol=lf | |
| # Language Diffs | |
| *.cs diff=csharp | |
| *.css diff=css |
| // ---- | |
| // Sass (v3.4.14) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @function prepend-slash($value) { | |
| @return unquote('"\\#{$value}"'); | |
| } | |
| // calling `prepend-slash` is only necessary when using a variable |
| # Project | |
| * text eol=crlf | |
| # .NET Framework | |
| *.dll binary diff=exif | |
| *.exe binary diff=exif |
| # Project | |
| * text eol=crlf | |
| # Language Diffs | |
| *.cs diff=csharp | |
| *.css diff=css |