Created
August 6, 2024 23:21
-
-
Save ninmonkey/ed1bbcea58256cb254e2e26f05c24456 to your computer and use it in GitHub Desktop.
Git from powershell using conditional logic to build native args.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using namespace System.Collections.Generic | |
# the final command will be | |
# git clone --branch release/v7.4 --shallow-since=2024-07-07 https://github.com/PowerShell/PowerShell | |
$cloneUrl = 'https://github.com/PowerShell/PowerShell' | |
$Since = [datetime]::Now.AddDays(-30 ) | |
$Branch = 'release/v7.4' | |
$binGit = Get-Command -Name 'git' -CommandType Application -ea 'stop' | |
# this bypasses most aliases or functions named 'git' | |
[List[Object]] $gitArgs = @( ) # builds an empty generic list [List<object>] | |
$GitArgs.Add('clone') | |
if( $Branch ) { | |
$gitArgs.AddRange(@( | |
'--branch' | |
$Branch | |
)) | |
} | |
if( $Since ) { | |
$gitArgs.AddRange(@( | |
'--shallow-since={0}' -f @( $Since.ToString('yyyy-MM-dd') ) | |
)) | |
} | |
$gitArgs.Add( $cloneUrl ) | |
# final args? | |
$gitArgs | Join-String -sep ' ' -op 'git ' | |
# outputs: git clone --branch release/v7.4 --shallow-since=2024-07-07 https://github.com/PowerShell/PowerShell | |
# to actually invoke the native command, uncomment this line | |
# & $binGit @gitArgs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment