From 98d768f76e69be1707a92b69d7e5b8fa0a27d98e Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Wed, 27 May 2026 11:41:51 +0200 Subject: [PATCH] Update terminology from 'GitHub' to 'Git' --- nf_core/pipelines/create/githubrepoquestion.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nf_core/pipelines/create/githubrepoquestion.py b/nf_core/pipelines/create/githubrepoquestion.py index ded33d188a..e26d3f844d 100644 --- a/nf_core/pipelines/create/githubrepoquestion.py +++ b/nf_core/pipelines/create/githubrepoquestion.py @@ -16,7 +16,7 @@ class GithubRepoQuestion(Screen): - """Ask if the user wants to create a GitHub repository.""" + """Ask if the user wants to create a Git repository.""" def compose(self) -> ComposeResult: yield Header() @@ -24,13 +24,13 @@ def compose(self) -> ComposeResult: yield Markdown( dedent( """ - # Create GitHub repository + # Create Git repository """ ) ) yield Markdown(dedent(github_text_markdown)) yield Center( - Button("Create GitHub repo", id="github_repo", variant="success"), + Button("Create Git repo", id="github_repo", variant="success"), Button("Finish without creating a repo", id="exit", variant="primary"), classes="cta", )