@@ -155,6 +155,7 @@ function git_tags_released() {
155
155
done
156
156
}
157
157
alias gittagsreleased=" git_tags_released"
158
+ alias gtr=" git_tags_released"
158
159
159
160
# git_create_tag function
160
161
# Sets an alias to create a new Git tag with an annotated message for release.
@@ -188,6 +189,7 @@ function git_create_tag() {
188
189
wsd_exe_cmd git tag -a " $1 " -m " :gem: release: $1 created successfully"
189
190
}
190
191
alias gitcreatetag=" git_create_tag"
192
+ alias gct=" git_create_tag"
191
193
192
194
# git_push_tag function
193
195
# Sets an alias to push a specific Git tag to the remote repository.
@@ -450,6 +452,7 @@ function git_remove_tag() {
450
452
send_telegram_git_activity " Removed tag \` $1 \` on remote =)"
451
453
}
452
454
alias gitremovetag=" git_remove_tag"
455
+ alias grmt=" git_remove_tag"
453
456
454
457
# git_remove_branch function
455
458
# Removes a Git branch both locally and on the remote repository.
@@ -479,6 +482,7 @@ function git_remove_branch() {
479
482
send_telegram_git_activity " Removed branch \` $1 \` on remote =)"
480
483
}
481
484
alias gitremovebranch=" git_remove_branch"
485
+ alias grmb=" git_remove_branch"
482
486
483
487
# git_create_branch function
484
488
# Creates a new Git branch and switches to it, then pushes the branch to the remote repository.
@@ -546,6 +550,7 @@ function git_fetch_branch() {
546
550
wsd_exe_cmd git pull -f
547
551
}
548
552
alias gitfetchbranch=" git_fetch_branch"
553
+ alias gfb=" git_fetch_branch"
549
554
550
555
# git_fetch_branch_current function
551
556
# Fetches the latest changes for the currently checked-out Git branch from the remote repository.
@@ -574,6 +579,7 @@ function git_fetch_branch_current() {
574
579
wsd_exe_cmd git pull -f
575
580
}
576
581
alias gitfetchbranchcurrent=" git_fetch_branch_current"
582
+ alias gfbc=" git_fetch_branch_current"
577
583
578
584
# git_fetch_remote_branch_checkout function
579
585
# Fetches a remote Git branch and checks it out locally.
@@ -605,8 +611,11 @@ function git_fetch_remote_branch_checkout() {
605
611
fi
606
612
wsd_exe_cmd git fetch origin " $1 " :" $1 "
607
613
wsd_exe_cmd git checkout " $1 "
614
+ wsd_exe_cmd git fetch --all --tags
615
+ wsd_exe_cmd git pull -f
608
616
}
609
- alias gitfetchremotebranchcheckout=" git_fetch_remote_branch_checkout"
617
+ alias gitfetchbranchremotecheckout=" git_fetch_remote_branch_checkout"
618
+ alias gfbr=" git_fetch_remote_branch_checkout"
610
619
611
620
# git_push_branch_remote_force function
612
621
# Force-push a local Git branch to its remote counterpart.
0 commit comments