From 164fc2cf5eb8f9d7d18952bcdec83c0b96abdc58 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Wed, 17 Jun 2026 08:54:03 -0500 Subject: [PATCH 1/2] chore: ignore Copilot dogfooding scaffolding in .gitignore Ignore the directories and files generated by `specify init --integration copilot` so the dogfooding scaffolding used during Spec Kit feature development isn't accidentally committed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitignore b/.gitignore index 1688c8299e..ee9cfaebfa 100644 --- a/.gitignore +++ b/.gitignore @@ -50,3 +50,14 @@ docs/dev .specify/extensions/.cache/ .specify/extensions/.backup/ .specify/extensions/*/local-config.yml + +# +# The following directories/file are intentionally ignored so that they are not accidentally +# committed to the repository. They contain the scaffolding `specify init --integration copilot` +# does and they are meant for dogfooding Spec Kit during its own feature development. +# +.github/agents/ +.github/prompts/ +.github/copilot-instructions.md +.specify/ +specs/ From f0496e9eb885d0d0fbb37fb5eb922fccaccec5d9 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Wed, 17 Jun 2026 09:10:26 -0500 Subject: [PATCH 2/2] chore: fix gitignore trailing whitespace in comment Remove trailing whitespace and extra comment-only lines in the Copilot dogfooding ignore block. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ee9cfaebfa..c3a3ab525b 100644 --- a/.gitignore +++ b/.gitignore @@ -51,11 +51,9 @@ docs/dev .specify/extensions/.backup/ .specify/extensions/*/local-config.yml -# -# The following directories/file are intentionally ignored so that they are not accidentally +# The following directories/file are intentionally ignored so that they are not accidentally # committed to the repository. They contain the scaffolding `specify init --integration copilot` # does and they are meant for dogfooding Spec Kit during its own feature development. -# .github/agents/ .github/prompts/ .github/copilot-instructions.md