-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Enable auto EOL on git repo side, fix some character encoding issues #4912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a581bc7
add ending newline to files missing it using:
SteveL-MSFT aaa0044
update .gitattributes to enforce autocrlf on all text files
SteveL-MSFT 522e42b
added <copyright> opening element where it was missing
SteveL-MSFT d0e6e07
fix mis-encoded character to apostrophe
SteveL-MSFT af2e5a6
replace incorrect encoding of copyright symbol with (c)
SteveL-MSFT 3fef2f0
[feature]
SteveL-MSFT 0a5f9fa
[feature]
SteveL-MSFT File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| CHANGELOG.md merge=union | ||
| * text=auto | ||
| *.png binary | ||
3 changes: 2 additions & 1 deletion
3
src/Microsoft.PowerShell.Commands.Utility/commands/utility/ShowCommand/ShowCommand.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...rosoft.PowerShell.Commands.Utility/commands/utility/ShowCommand/ShowCommandCommandInfo.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...crosoft.PowerShell.Commands.Utility/commands/utility/ShowCommand/ShowCommandModuleInfo.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...soft.PowerShell.Commands.Utility/commands/utility/ShowCommand/ShowCommandParameterInfo.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...t.PowerShell.Commands.Utility/commands/utility/ShowCommand/ShowCommandParameterSetInfo.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...soft.PowerShell.Commands.Utility/commands/utility/ShowCommand/ShowCommandParameterType.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
src/Microsoft.PowerShell.Commands.Utility/commands/utility/ShowCommand/ShowCommandProxy.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/.gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| CorePsTypeCatalog.cs | ||
| CorePsTypeCatalog.cs |
2 changes: 1 addition & 1 deletion
2
src/Microsoft.PowerShell.CoreCLR.Eventing/DotNetCode/Eventing/EventDescriptor.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Microsoft.PowerShell.CoreCLR.Eventing/DotNetCode/Eventing/EventProvider.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Microsoft.PowerShell.CoreCLR.Eventing/DotNetCode/Eventing/EventProviderTraceListener.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions
28
src/Modules/Shared/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,14 @@ | ||
| @{ | ||
| GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" | ||
| Author="Microsoft Corporation" | ||
| CompanyName="Microsoft Corporation" | ||
| Copyright="� Microsoft Corporation. All rights reserved." | ||
| ModuleVersion="3.0.0.0" | ||
| PowerShellVersion="3.0" | ||
| CLRVersion="4.0" | ||
| AliasesToExport = @() | ||
| FunctionsToExport = @() | ||
| CmdletsToExport="Start-Transcript", "Stop-Transcript" | ||
| NestedModules="Microsoft.PowerShell.ConsoleHost.dll" | ||
| HelpInfoURI = 'https://go.microsoft.com/fwlink/?linkid=390784' | ||
| } | ||
| @{ | ||
| GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" | ||
| Author="Microsoft Corporation" | ||
| CompanyName="Microsoft Corporation" | ||
| Copyright="(c) Microsoft Corporation. All rights reserved." | ||
| ModuleVersion="3.0.0.0" | ||
| PowerShellVersion="3.0" | ||
| CLRVersion="4.0" | ||
| AliasesToExport = @() | ||
| FunctionsToExport = @() | ||
| CmdletsToExport="Start-Transcript", "Stop-Transcript" | ||
| NestedModules="Microsoft.PowerShell.ConsoleHost.dll" | ||
| HelpInfoURI = 'https://go.microsoft.com/fwlink/?linkid=390784' | ||
| } |
108 changes: 54 additions & 54 deletions
108
src/Modules/Unix/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,54 +1,54 @@ | ||
| @{ | ||
| GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" | ||
| Author="Microsoft Corporation" | ||
| CompanyName="Microsoft Corporation" | ||
| Copyright="� Microsoft Corporation. All rights reserved." | ||
| ModuleVersion="3.1.0.0" | ||
| PowerShellVersion="3.0" | ||
| NestedModules="Microsoft.PowerShell.Commands.Management.dll" | ||
| HelpInfoURI = 'https://go.microsoft.com/fwlink/?linkid=390785' | ||
| AliasesToExport = @("gtz") | ||
| FunctionsToExport = @() | ||
| CmdletsToExport=@("Add-Content", | ||
| "Clear-Content", | ||
| "Clear-ItemProperty", | ||
| "Join-Path", | ||
| "Convert-Path", | ||
| "Copy-ItemProperty", | ||
| "Get-ChildItem", | ||
| "Get-Content", | ||
| "Get-ItemProperty", | ||
| "Get-ItemPropertyValue", | ||
| "Move-ItemProperty", | ||
| "Get-Location", | ||
| "Set-Location", | ||
| "Push-Location", | ||
| "Pop-Location", | ||
| "New-PSDrive", | ||
| "Remove-PSDrive", | ||
| "Get-PSDrive", | ||
| "Get-Item", | ||
| "New-Item", | ||
| "Set-Item", | ||
| "Remove-Item", | ||
| "Move-Item", | ||
| "Rename-Item", | ||
| "Copy-Item", | ||
| "Clear-Item", | ||
| "Invoke-Item", | ||
| "Get-PSProvider", | ||
| "New-ItemProperty", | ||
| "Split-Path", | ||
| "Test-Path", | ||
| "Get-Process", | ||
| "Stop-Process", | ||
| "Wait-Process", | ||
| "Debug-Process", | ||
| "Start-Process", | ||
| "Remove-ItemProperty", | ||
| "Rename-ItemProperty", | ||
| "Resolve-Path", | ||
| "Set-Content", | ||
| "Set-ItemProperty", | ||
| "Get-TimeZone") | ||
| } | ||
| @{ | ||
| GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" | ||
| Author="Microsoft Corporation" | ||
| CompanyName="Microsoft Corporation" | ||
| Copyright="(c) Microsoft Corporation. All rights reserved." | ||
| ModuleVersion="3.1.0.0" | ||
| PowerShellVersion="3.0" | ||
| NestedModules="Microsoft.PowerShell.Commands.Management.dll" | ||
| HelpInfoURI = 'https://go.microsoft.com/fwlink/?linkid=390785' | ||
| AliasesToExport = @("gtz") | ||
| FunctionsToExport = @() | ||
| CmdletsToExport=@("Add-Content", | ||
| "Clear-Content", | ||
| "Clear-ItemProperty", | ||
| "Join-Path", | ||
| "Convert-Path", | ||
| "Copy-ItemProperty", | ||
| "Get-ChildItem", | ||
| "Get-Content", | ||
| "Get-ItemProperty", | ||
| "Get-ItemPropertyValue", | ||
| "Move-ItemProperty", | ||
| "Get-Location", | ||
| "Set-Location", | ||
| "Push-Location", | ||
| "Pop-Location", | ||
| "New-PSDrive", | ||
| "Remove-PSDrive", | ||
| "Get-PSDrive", | ||
| "Get-Item", | ||
| "New-Item", | ||
| "Set-Item", | ||
| "Remove-Item", | ||
| "Move-Item", | ||
| "Rename-Item", | ||
| "Copy-Item", | ||
| "Clear-Item", | ||
| "Invoke-Item", | ||
| "Get-PSProvider", | ||
| "New-ItemProperty", | ||
| "Split-Path", | ||
| "Test-Path", | ||
| "Get-Process", | ||
| "Stop-Process", | ||
| "Wait-Process", | ||
| "Debug-Process", | ||
| "Start-Process", | ||
| "Remove-ItemProperty", | ||
| "Rename-ItemProperty", | ||
| "Resolve-Path", | ||
| "Set-Content", | ||
| "Set-ItemProperty", | ||
| "Get-TimeZone") | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 15 additions & 15 deletions
30
src/Modules/Windows-Core+Full/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,15 @@ | ||
| @{ | ||
| GUID="766204A6-330E-4263-A7AB-46C87AFC366C" | ||
| Author="Microsoft Corporation" | ||
| CompanyName="Microsoft Corporation" | ||
| Copyright="� Microsoft Corporation. All rights reserved." | ||
| ModuleVersion="3.0.0.0" | ||
| PowerShellVersion="3.0" | ||
| CLRVersion="4.0" | ||
| AliasesToExport = @() | ||
| FunctionsToExport = @() | ||
| CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" | ||
| NestedModules="Microsoft.WSMan.Management.dll" | ||
| FormatsToProcess="WSMan.format.ps1xml" | ||
| HelpInfoURI = 'https://go.microsoft.com/fwlink/?linkid=390788' | ||
| } | ||
| @{ | ||
| GUID="766204A6-330E-4263-A7AB-46C87AFC366C" | ||
| Author="Microsoft Corporation" | ||
| CompanyName="Microsoft Corporation" | ||
| Copyright="(c) Microsoft Corporation. All rights reserved." | ||
| ModuleVersion="3.0.0.0" | ||
| PowerShellVersion="3.0" | ||
| CLRVersion="4.0" | ||
| AliasesToExport = @() | ||
| FunctionsToExport = @() | ||
| CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" | ||
| NestedModules="Microsoft.WSMan.Management.dll" | ||
| FormatsToProcess="WSMan.format.ps1xml" | ||
| HelpInfoURI = 'https://go.microsoft.com/fwlink/?linkid=390788' | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on my reading of the docs, this will only work if the files are not committed CRLF.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From https://www.git-scm.com/docs/gitattributes:
The actual conversion of files that have CRLF (or worse mixed EOL) will be part of #4910 which we'll do after 6.0.0 final since it touches so many files.