├── .gitignore ├── Build.ps1 ├── CONTRIBUTING.md ├── Examples ├── GitVersion.yml └── TestVersions.ps1 ├── Get-Log.ps1 ├── Get-Version.ps1 ├── PSGit.pssproj ├── PSGit.sln ├── README.md ├── Tests ├── Add-Change.feature ├── Branch.feature ├── Changes.feature ├── Info.feature ├── Internal.Steps.ps1 ├── Internal.feature ├── Log.feature ├── Must.Steps.ps1 ├── Must.Tests.ps1 ├── NewRepository.feature ├── Save-Change.feature ├── Send-CodeCov.ps1 └── Status.Steps.ps1 ├── appveyor.yml ├── packages.config └── src ├── Configuration.psd1 ├── PSGit.formats.ps1xml ├── PSGit.psd1 ├── PSGit.psm1 ├── PSGit.types.ps1xml ├── PSGitPowerline.ps1 └── PSGitPrompt.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Build.ps1 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Examples/GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Examples/GitVersion.yml -------------------------------------------------------------------------------- /Examples/TestVersions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Examples/TestVersions.ps1 -------------------------------------------------------------------------------- /Get-Log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Get-Log.ps1 -------------------------------------------------------------------------------- /Get-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Get-Version.ps1 -------------------------------------------------------------------------------- /PSGit.pssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/PSGit.pssproj -------------------------------------------------------------------------------- /PSGit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/PSGit.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Add-Change.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Add-Change.feature -------------------------------------------------------------------------------- /Tests/Branch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Branch.feature -------------------------------------------------------------------------------- /Tests/Changes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Changes.feature -------------------------------------------------------------------------------- /Tests/Info.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Info.feature -------------------------------------------------------------------------------- /Tests/Internal.Steps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Internal.Steps.ps1 -------------------------------------------------------------------------------- /Tests/Internal.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Internal.feature -------------------------------------------------------------------------------- /Tests/Log.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Log.feature -------------------------------------------------------------------------------- /Tests/Must.Steps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Must.Steps.ps1 -------------------------------------------------------------------------------- /Tests/Must.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Must.Tests.ps1 -------------------------------------------------------------------------------- /Tests/NewRepository.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/NewRepository.feature -------------------------------------------------------------------------------- /Tests/Save-Change.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Save-Change.feature -------------------------------------------------------------------------------- /Tests/Send-CodeCov.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Send-CodeCov.ps1 -------------------------------------------------------------------------------- /Tests/Status.Steps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/Tests/Status.Steps.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/appveyor.yml -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/packages.config -------------------------------------------------------------------------------- /src/Configuration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/src/Configuration.psd1 -------------------------------------------------------------------------------- /src/PSGit.formats.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/src/PSGit.formats.ps1xml -------------------------------------------------------------------------------- /src/PSGit.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/src/PSGit.psd1 -------------------------------------------------------------------------------- /src/PSGit.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/src/PSGit.psm1 -------------------------------------------------------------------------------- /src/PSGit.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/src/PSGit.types.ps1xml -------------------------------------------------------------------------------- /src/PSGitPowerline.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/src/PSGitPowerline.ps1 -------------------------------------------------------------------------------- /src/PSGitPrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoshCode/PSGit/HEAD/src/PSGitPrompt.ps1 --------------------------------------------------------------------------------