mirror of
https://github.com/shawnkim1997/All-in-one-Financial-Analysis.git
synced 2026-07-29 11:37:44 +00:00
25 lines
595 B
Bash
Executable File
25 lines
595 B
Bash
Executable File
#!/bin/bash
|
|
# Push current (English) version to GitHub
|
|
# Run from project root: bash push_to_github.sh
|
|
|
|
set -e
|
|
cd "/Users/seonpil/Documents/FQDC Project"
|
|
|
|
echo "--- Git status ---"
|
|
git status
|
|
|
|
echo ""
|
|
echo "--- Add all changes ---"
|
|
git add -A
|
|
|
|
echo ""
|
|
echo "--- Commit (README: 3-tab architecture + Project Origin & Vision) ---"
|
|
git commit -m "docs: Update README — 3-tab system (10-K Insights, DCF, Comps) + Project Origin & Vision (English)"
|
|
|
|
echo ""
|
|
echo "--- Push to origin main ---"
|
|
git push origin main
|
|
|
|
echo ""
|
|
echo "Done. Check https://github.com/shawnkim1997/10-K-summariser-project"
|