Files
workspace/git-commit-template.sh
aitest 15c4480db1 Add OpenClaw workspace configuration and tools
- Add agent configuration files (AGENTS.md, USER.md, IDENTITY.md, SOUL.md)
- Add git configuration and skills management scripts
- Add frontend/backend analysis tools and reports
- Add DingTalk media sender utilities and documentation
- Fix OpenClaw runtime environment (Node.js and Python)
- Configure git remotes and push scripts
2026-03-05 13:56:59 +09:00

29 lines
796 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Git提交脚本 - 提交技能到远程仓库
# Git信息
GIT_SERVER="git.alicorns.co.jp"
GIT_USER="aitest"
GIT_PASSWORD="Aitest123456"
# 技能路径
SKILL1_PATH="C:/Users/ALC/.openclaw/skills/office-file-handler"
SKILL2_PATH="C:/Users/ALC/.openclaw/skills/dingtalk-media-sender"
# 仓库名称(需要确认)
REPO1_NAME="office-file-handler"
REPO2_NAME="dingtalk-media-sender"
echo "=== Git配置信息 ==="
echo "Git服务器: $GIT_SERVER"
echo "用户名: $GIT_USER"
echo ""
echo "=== 技能 ==="
echo "1. office-file-handler -> $REPO1_NAME"
echo "2. dingtalk-media-sender -> $REPO2_NAME"
echo ""
echo "请确认Git仓库URL格式"
echo "ssh://$GIT_USER@$GIT_SERVER/$REPO1_NAME.git"
echo "或"
echo "https://$GIT_USER:$GIT_PASSWORD@git.alicorns.co.jp/$REPO1_NAME.git"