cliproxy-api / push-hf.ps1
Ahmed
chore: make HF push non-force by default
451a040
Raw
History Blame Contribute Delete
274 Bytes
param(
[Parameter(Mandatory = $false)]
[string]$Message = "feat: gemini-3.1-pro + HF Gemini OAuth bootstrap",
[Parameter(Mandatory = $false)]
[switch]$Force
)
git add -A
git commit -m $Message
if ($Force) {
git push hf main --force
} else {
git push hf main
}