| git | PowerShell |
|---|---|
| git config | Set-GitConfguration |
| git init | Initialize-GitRepository |
| git clone | Copy-GitRepository |
| git add | Add-GitFile |
| git status | Get-GitStatus |
| git diff | Compare-GitChanges |
| git commit | Save-GitChanges |
| git restore | Restore-GitFile |
| git reset | Undo-GitChanges |
| git rm | Remove-GetFile |
| git mv | Move-GitFile |
| git branch | Show-GitBranches |
| git branch (name) | Add-GitBranch |
| git branch -d | Remove-GitBranch |
| git checkout | Switch-GitBranch |
| git merge | Merge-GitBranch |
| git log | Show-GitLog |
| git stash | Checkpoint-GitStash |
| git stash list | Show-GitStashes |
| git stash pop | Restore-GitStash |
| git stash drop | Remove-GitStash |
| git tag | Show-GitTags |
| git tag (name) | Add-GitTag |
| git pull | Receive-GitRemote |
| git push | Send-GitRemote |
| git remote | Get-GitRemotes |
| git remote add | Connect-GitRemote |
| git show | Get-GitCommit |
| git revert | Restore-GitCommit |
| git rebase | Restore-Gitcommit -Rebase |
