forked from tributary-protocol/tributary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush_fix.bat
More file actions
22 lines (17 loc) · 826 Bytes
/
Copy pathpush_fix.bat
File metadata and controls
22 lines (17 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@echo off
echo ===================================================
echo [TRIBUTARY FIX] Syncing and pushing to PR #297 branch
echo ===================================================
echo [TRIBUTARY FIX] Staging and committing all local changes...
git add .
git commit -m "fix(ci): resolve CI check errors and update branch" 2>nul
echo [TRIBUTARY FIX] Fetching latest from origin...
git fetch origin
echo [TRIBUTARY FIX] Rebasing local changes onto origin/feature/pay-live-preview...
git rebase origin/feature/pay-live-preview
echo [TRIBUTARY FIX] Pushing updates to origin/feature/pay-live-preview...
git push origin feature/pay-live-preview
echo ===================================================
echo [TRIBUTARY FIX] PR #297 branch successfully updated!
echo ===================================================
pause