Remove Gitea/SSH helper scripts (GITEA-SETUP.md, gitea-push.sh, setup-gitea-ssh.sh, ssh-1password-diagnose.sh)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-03 13:38:55 +01:00
parent b333198d7e
commit b492df3b1a
4 changed files with 0 additions and 123 deletions

View File

@@ -1,22 +0,0 @@
#!/bin/bash
# One-time setup: creates ~/.ssh/gitea-1password-only so git push uses 1Password for Gitea.
# Run from project root: ./scripts/setup-gitea-ssh.sh
set -e
SSH_DIR="$HOME/.ssh"
CONFIG_FILE="$SSH_DIR/gitea-1password-only"
OP_SOCK="$HOME/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
mkdir -p "$SSH_DIR"
cat > "$CONFIG_FILE" << 'EOF'
Host 10.0.10.205
User gitea
HostName 10.0.10.205
IdentityAgent "/Users/berthausmans/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
EOF
echo "Created $CONFIG_FILE"
echo ""
echo "Next: enable \"Use the SSH agent\" in 1Password (Settings → Developer)."
echo "Then you can push from Cursor or run: ./gitea-push.sh"