Update shell funcs

This commit is contained in:
2023-12-09 23:45:30 -05:00
parent 64e07d3f40
commit 78662b3e09
8 changed files with 39 additions and 10 deletions

17
contrib/gpm_funcs.sh Normal file
View File

@ -0,0 +1,17 @@
# Go to a project, specify a fzf filter or filter
# through them all
pgo () {
project=` gitlab-project-manager project cd $1 `
if [ $? -eq 0 ]; then
cd $project
fi
}
# Add a new project to your local projects path
padd () {
gitlab-project-manager project add
}
plist () {
gitlab-project-manager alias list
}