|
314474a682
|
上傳檔案到「/」
-- 指定專案資料夾
cd /employee_votes
-- gitea 初始化
git init
-- 建立註解
git add .
git commit -m "Initial commit"
-- 切換到 main 分支
git branch -M main
-- 上傳檔案到 gitea
git remote add origin https://github.com/91771/<REPO>.git
git push -u origin main
|
2025-09-17 15:18:20 +08:00 |
|