-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathcommit_all.sh
More file actions
executable file
·61 lines (46 loc) · 2.12 KB
/
commit_all.sh
File metadata and controls
executable file
·61 lines (46 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
# commit_all.sh — staged commits for both repos from git status
set -euo pipefail
# ============================================================================
# Repo 1: /workspaces/Amana (feature/trade-detail-panel)
# ============================================================================
if [[ -d /workspaces/Amana ]]; then
(
cd /workspaces/Amana
git add frontend/package.json frontend/package-lock.json
git commit -m "chore: update frontend dependencies"
git add frontend/src/app/globals.css
git commit -m "style: update global styles"
git add frontend/src/app/layout.tsx
git commit -m "feat: update app layout"
git add frontend/src/app/assets/ frontend/src/components/ frontend/src/types/
git commit -m "feat: add assets, components, and types"
)
else
echo "Skipping /workspaces/Amana (not found)."
fi
# ============================================================================
# Repo 2: /home/jeffersonyouashi/Documents/DRIPS/Remitwise-Contracts
# (test/error-codes-contracts)
# ============================================================================
(
cd /home/jeffersonyouashi/Documents/DRIPS/Remitwise-Contracts
git add bill_payments/src/lib.rs
git commit -m "fix: restore bill_payments currency handling"
git add insurance/Cargo.toml
git commit -m "chore: restore insurance dependencies"
git add integration_tests/Cargo.toml integration_tests/tests/multi_contract_integration.rs
git commit -m "test: update integration tests for error codes"
git add integration_tests/test_snapshots/test_multi_contract_user_flow.1.json
git commit -m "test: update integration test snapshots"
git add remittance_split/src/lib.rs
git commit -m "fix: restore remittance_split upgrade admin handling"
git add remitwise-common/src/lib.rs
git commit -m "chore: remove duplicate TTL constants"
git add savings_goals/src/lib.rs
git commit -m "fix: restore savings_goals upgrade admin handling"
git add bill_payments/proptest-regressions/
git commit -m "test: add bill_payments proptest regressions"
)
echo ""
echo "All commits applied successfully."