13 lines
427 B
Bash
13 lines
427 B
Bash
GIT_REPO_URL=https://github.com/yourusername/yourrepo.git
|
|
GIT_USERNAME=yourusername
|
|
GIT_EMAIL=your.email@example.com
|
|
GIT_BRANCH=main
|
|
|
|
# GitHub Authentication (choose one method):
|
|
# Method 1: Personal Access Token (recommended for HTTPS)
|
|
GITHUB_TOKEN=ghp_your_personal_access_token_here
|
|
|
|
# Method 2: SSH Key (for SSH URLs)
|
|
# GIT_REPO_URL=git@github.com:yourusername/yourrepo.git
|
|
# SSH_PRIVATE_KEY_PATH=/path/to/your/private/key
|