This commit is contained in:
2026-01-28 06:08:32 +02:00
parent 5972c3c5df
commit 74e779ff54
6 changed files with 16 additions and 4 deletions

View File

@@ -14,6 +14,13 @@
[remote]
pushDefault = origin
[alias]
amend = commit -a --amend --no-edit
amend = commit --amend --no-edit
rename = branch -m
st = status
lg = log --oneline --graph --decorate --all
lga = log --oneline --graph --decorate --all --author=you
unstage = reset HEAD
last = log -1 HEAD
tags = tag -l
undo = reset --mixed HEAD~1