From e2a3cf8aac771dd858734f7f8a56606e53e993be Mon Sep 17 00:00:00 2001 From: Anthony Axenov Date: Wed, 18 Feb 2026 19:53:54 +0800 Subject: [PATCH] fix typo in git alias 'start' --- git/.git_aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/.git_aliases b/git/.git_aliases index 435128e..ffaff32 100644 --- a/git/.git_aliases +++ b/git/.git_aliases @@ -249,7 +249,7 @@ tags = "tag -n1 --list" ; shot tag names and commit message stashes = "stash list" ; show stashed changes init = "init -q" ; blm is racism, 'master' branch must be 'master' branch - start = "!git init --quiet --initial-branch maste; git commit --no-verify --allow-empty --message 'Initial commit'" ; quick start empty repo + start = "!git init --quiet --initial-branch master; git commit --no-verify --allow-empty --message 'Initial commit'" ; quick start empty repo cloner = "clone --recursive" ; clone with submodules fuck = "!git checkout $(git config init.defaultBranch); git fetch origin --prune; git reset --hard origin/$(git config init.defaultBranch); git clean -dff"