feat: Add GitRepoRegistration cmdlets #5

Merged
pascal_nulah merged 69 commits from feature/git-provider into dev 2026-09-06 09:33:36 +10:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit a0e29619a4 - Show all commits

chore(git-provider): Move commands to command folder

Scott 2026-08-23 09:04:38 +10:00

View file

@ -4,10 +4,10 @@ using System.IO;
using System.Management.Automation;
using ModuleCore.Git;
namespace PowershellModule.Git;
namespace PowershellModule.Git.Commands;
[Cmdlet(VerbsCommon.New, Noun)]
public class NewGitRepoCommand : PSCmdlet
public sealed class NewGitRepoCommand : PSCmdlet
{
private const string Noun = "GitRepo";

View file

@ -2,7 +2,7 @@
using System.Management.Automation;
using ModuleCore.Git;
namespace PowershellModule.Git;
namespace PowershellModule.Git.Commands;
[Cmdlet(VerbsCommon.Set, Noun)]
public class SetGitRepoCommand : PSCmdlet