We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e10ef commit 4faac02Copy full SHA for 4faac02
scripts/setup-git.py
@@ -25,6 +25,7 @@ def setup_git(path: Path, github_user: str, repo_name: str) -> None:
25
["git", "remote", "add", "origin", f"https://github.com/{github_user}/{repo_name}.git"],
26
["git", "remote", "set-url", "origin", f"https://github.com/{github_user}/{repo_name}.git"],
27
["git", "fetch", "origin"],
28
+ ["git", "pull"],
29
["git", "push", "-u", "origin", "main"],
30
["git", "checkout", "-b", "develop", "main"],
31
["git", "push", "-u", "origin", "develop"],
0 commit comments