feat: Add GitRepoRegistration cmdlets #5
2 changed files with 40 additions and 18 deletions
docs(git-provider): Add initial git command documentation
- create solution folder for docs
commit
7c6a47bfcb
|
|
@ -1,20 +1,23 @@
|
|||
<Solution>
|
||||
<Folder Name="/build/">
|
||||
<Project Path="build/Build.csproj" />
|
||||
</Folder>
|
||||
<Folder Name="/harnesses/">
|
||||
<Project Path="src/ModuleHarness/ModuleHarness.csproj" />
|
||||
<Project Path="src/PowershellHarness/PowershellHarness.csproj" />
|
||||
</Folder>
|
||||
<Folder Name="/scripts/">
|
||||
<File Path="build.ps1" />
|
||||
</Folder>
|
||||
<Folder Name="/solutionItems/">
|
||||
<File Path="Directory.Packages.props" />
|
||||
</Folder>
|
||||
<Folder Name="/tests/">
|
||||
<Project Path="tests/ModuleTests/ModuleTests.csproj" />
|
||||
</Folder>
|
||||
<Project Path="src/ModuleCore/ModuleCore.csproj" />
|
||||
<Project Path="src/PowershellModule/PowershellModule.csproj" />
|
||||
<Folder Name="/build/">
|
||||
<Project Path="build/Build.csproj" />
|
||||
</Folder>
|
||||
<Folder Name="/docs/">
|
||||
<File Path="docs/GitRepositoryRegistration.md" />
|
||||
</Folder>
|
||||
<Folder Name="/harnesses/">
|
||||
<Project Path="src/ModuleHarness/ModuleHarness.csproj" />
|
||||
<Project Path="src/PowershellHarness/PowershellHarness.csproj" />
|
||||
</Folder>
|
||||
<Folder Name="/scripts/">
|
||||
<File Path="build.ps1" />
|
||||
</Folder>
|
||||
<Folder Name="/solutionItems/">
|
||||
<File Path="Directory.Packages.props" />
|
||||
</Folder>
|
||||
<Folder Name="/tests/">
|
||||
<Project Path="tests/ModuleTests/ModuleTests.csproj" />
|
||||
</Folder>
|
||||
<Project Path="src/ModuleCore/ModuleCore.csproj" />
|
||||
<Project Path="src/PowershellModule/PowershellModule.csproj" />
|
||||
</Solution>
|
||||
|
|
|
|||
19
docs/GitRepositoryRegistration.md
Normal file
19
docs/GitRepositoryRegistration.md
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Git Repo Registration
|
||||
|
||||
- all commands support `-debug`
|
||||
|
||||
## New-GitRepoRegistration
|
||||
|
||||
`New-GitRepoRegistration [-Name string]`
|
||||
|
||||
## Get-GitRepoRegistration
|
||||
|
||||
`Get-GitRepoRegistration`
|
||||
|
||||
## Show-GitRepoRegistration
|
||||
|
||||
`Show-GitRepoRegistration -Name string [-NoStack|-NoSetLocation]`
|
||||
|
||||
## Remove-GitRepoRegistration
|
||||
|
||||
`Remove-GitRepoRegistration [-Name string]`
|
||||
Loading…
Reference in a new issue