docs(git-provider): Add initial git command documentation
- create solution folder for docs
This commit is contained in:
parent
5528a756f9
commit
7c6a47bfcb
2 changed files with 40 additions and 18 deletions
|
|
@ -1,20 +1,23 @@
|
||||||
<Solution>
|
<Solution>
|
||||||
<Folder Name="/build/">
|
<Folder Name="/build/">
|
||||||
<Project Path="build/Build.csproj" />
|
<Project Path="build/Build.csproj" />
|
||||||
</Folder>
|
</Folder>
|
||||||
<Folder Name="/harnesses/">
|
<Folder Name="/docs/">
|
||||||
<Project Path="src/ModuleHarness/ModuleHarness.csproj" />
|
<File Path="docs/GitRepositoryRegistration.md" />
|
||||||
<Project Path="src/PowershellHarness/PowershellHarness.csproj" />
|
</Folder>
|
||||||
</Folder>
|
<Folder Name="/harnesses/">
|
||||||
<Folder Name="/scripts/">
|
<Project Path="src/ModuleHarness/ModuleHarness.csproj" />
|
||||||
<File Path="build.ps1" />
|
<Project Path="src/PowershellHarness/PowershellHarness.csproj" />
|
||||||
</Folder>
|
</Folder>
|
||||||
<Folder Name="/solutionItems/">
|
<Folder Name="/scripts/">
|
||||||
<File Path="Directory.Packages.props" />
|
<File Path="build.ps1" />
|
||||||
</Folder>
|
</Folder>
|
||||||
<Folder Name="/tests/">
|
<Folder Name="/solutionItems/">
|
||||||
<Project Path="tests/ModuleTests/ModuleTests.csproj" />
|
<File Path="Directory.Packages.props" />
|
||||||
</Folder>
|
</Folder>
|
||||||
<Project Path="src/ModuleCore/ModuleCore.csproj" />
|
<Folder Name="/tests/">
|
||||||
<Project Path="src/PowershellModule/PowershellModule.csproj" />
|
<Project Path="tests/ModuleTests/ModuleTests.csproj" />
|
||||||
|
</Folder>
|
||||||
|
<Project Path="src/ModuleCore/ModuleCore.csproj" />
|
||||||
|
<Project Path="src/PowershellModule/PowershellModule.csproj" />
|
||||||
</Solution>
|
</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