user/git: use switch instead of checkout

Closes #12
This commit is contained in:
Dmitriy Pleshevskiy 2023-03-31 18:17:18 +03:00
parent b6d490da8a
commit e0a3b1bf15
Signed by: pleshevskiy
GPG Key ID: 79C4487B44403985
1 changed files with 3 additions and 3 deletions

View File

@ -42,9 +42,9 @@ in
pull.rebase = true;
};
aliases = {
co = "checkout";
cob = "checkout -b";
cobf = "checkout -B";
co = "switch";
cob = "switch -c";
cobf = "switch -C";
st = "status -sb";
d = "diff";
dc = "diff --cached";