Skip to content

Instantly share code, notes, and snippets.

View Jonny-Freemarket's full-sized avatar

Jonny Olliff-Lee Jonny-Freemarket

  • FreemarketFX
View GitHub Profile
@Jonny-Freemarket
Jonny-Freemarket / git.ps1
Created October 3, 2025 13:34
Git Aliases
function Invoke-GitStatus() { git status }
function Invoke-GitAdd() { git add -p }
function Invoke-GitAddCommit() {
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
[string] $Message
)