├── .editorconfig ├── .gitignore ├── GitHub-Mark.png ├── Posh-GitHub-Profile.ps1 ├── Posh-Github.psm1 ├── README.md └── powershell_logo.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iristyle/Posh-GitHub/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iristyle/Posh-GitHub/HEAD/.gitignore -------------------------------------------------------------------------------- /GitHub-Mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iristyle/Posh-GitHub/HEAD/GitHub-Mark.png -------------------------------------------------------------------------------- /Posh-GitHub-Profile.ps1: -------------------------------------------------------------------------------- 1 | Import-Module Posh-GitHub 2 | -------------------------------------------------------------------------------- /Posh-Github.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iristyle/Posh-GitHub/HEAD/Posh-Github.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iristyle/Posh-GitHub/HEAD/README.md -------------------------------------------------------------------------------- /powershell_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iristyle/Posh-GitHub/HEAD/powershell_logo.png --------------------------------------------------------------------------------