Compare commits
2 commits
efc86e11a4
...
e33f4653f1
| Author | SHA1 | Date | |
|---|---|---|---|
| e33f4653f1 | |||
| 79f0ef9ac6 |
1 changed files with 10 additions and 9 deletions
|
|
@ -57,8 +57,8 @@ private: false
|
||||||
|
|
||||||
|
|
||||||
## Private Synthesis (`wiki/private/`)
|
## Private Synthesis (`wiki/private/`)
|
||||||
*Restricted access. Requires PRIVATE_CONTEXT: enabled and unlocked repo.*
|
_Restricted access. Requires `PRIVATE_CONTEXT: enabled` and unlocked repo._
|
||||||
*List slug names ONLY. Do not append summaries — prevents metadata leakage.*
|
_List slug names ONLY. Do not append summaries — prevents metadata leakage._
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat > "${g}/wiki/log.md" <<'EOF'
|
cat > "${g}/wiki/log.md" <<'EOF'
|
||||||
|
|
@ -88,16 +88,17 @@ EOF
|
||||||
git init -q
|
git init -q
|
||||||
# Hermetic: ignore the user's global git config (signing, global hooks);
|
# Hermetic: ignore the user's global git config (signing, global hooks);
|
||||||
# otherwise commit.gpgsign or a global core.hooksPath makes git commit fail here.
|
# otherwise commit.gpgsign or a global core.hooksPath makes git commit fail here.
|
||||||
git config commit.gpgsign false
|
git config --local user.name "Framework Test"
|
||||||
git config core.hooksPath "${base}/nohooks"
|
git config --local user.email "test@genome.local"
|
||||||
git config user.email t@t
|
git config --local commit.gpgsign false
|
||||||
git config user.name tester
|
git config --local core.hooksPath "${base}/nohooks"
|
||||||
git add .
|
|
||||||
git commit -qm init
|
|
||||||
git branch -M main
|
git branch -M main
|
||||||
git remote add origin "${base}/origin.git"
|
git remote add origin "${base}/origin.git"
|
||||||
|
git add .
|
||||||
|
git commit -q -m "chore: initial scaffold"
|
||||||
git push -q -u origin main
|
git push -q -u origin main
|
||||||
) >/dev/null
|
)
|
||||||
|
|
||||||
echo "${g}"
|
echo "${g}"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue