mirror of
https://github.com/MiSTer-devel/Distribution_MiSTer.git
synced 2026-04-19 03:04:16 +00:00
10 lines
208 B
Bash
Executable File
10 lines
208 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2022-2025 José Manuel Barroso Galindo <theypsilon@gmail.com>
|
|
|
|
set -euo pipefail
|
|
|
|
git checkout -f develop -b main
|
|
git add .
|
|
git commit -m "-"
|
|
git fetch origin main || true
|