From 874085332fd9ca98a8af1534212dcf3e4100c192 Mon Sep 17 00:00:00 2001 From: Luno Date: Sun, 14 Jun 2026 02:14:29 +0900 Subject: [PATCH] Add Git push smoke test --- README.md | 10 ++++++++++ hello.sh | 5 +++++ 2 files changed, 15 insertions(+) create mode 100644 README.md create mode 100755 hello.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..8032067 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Git Push Smoke Test + +This repository verifies that the OpenClaw agent can create a local Git +repository and push commits to the configured Gitea server. + +Run: + +```sh +./hello.sh +``` diff --git a/hello.sh b/hello.sh new file mode 100755 index 0000000..3b82efa --- /dev/null +++ b/hello.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +set -eu + +echo "Git push test succeeded."