Update the git helpers names

This commit is contained in:
Sameer Rahmani 2022-07-19 17:14:37 +01:00
parent 60411b9c7f
commit 6cc0e81e52
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ function git_commits_from() {
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative $1..$(git branch --show-current)
}
function reset_branch_commits() {
function git_reset_branch_commits() {
git reset $(git merge-base $1 $(git branch --show-current))
}