Remove 'cockpit' function, add git- in front of pull and push functions
This commit is contained in:
parent
58483e9739
commit
5ebe25730a
1 changed files with 2 additions and 8 deletions
|
@ -66,12 +66,6 @@ clitip() {
|
|||
xmlstarlet unesc | fmt -80 | iconv -t US
|
||||
}
|
||||
|
||||
cockpit() { # enable pass-like commands (ex: cockpit git push)
|
||||
local start_dir="$PWD"
|
||||
cd ~/setup-cockpit && "$@"
|
||||
cd "$start_dir" && echo 'done'
|
||||
}
|
||||
|
||||
system-update() {
|
||||
# Don't update if its a kernel update that will require reboot
|
||||
if checkupdates >/dev/null 2>&1; then
|
||||
|
@ -107,7 +101,7 @@ aur-update() {
|
|||
cd "$start_dir" || exit 1
|
||||
}
|
||||
|
||||
pull-from-repos() {
|
||||
git-pull-from-repos() {
|
||||
local start_dir="$PWD"
|
||||
local git_repos=($(find ~ -name .git -type d -not -path '*/.vim/*' -and -not -path '*/.local/*' -and -not -path '*/builds/*' -exec dirname {} \;))
|
||||
for repo in "${git_repos[@]}"; do
|
||||
|
@ -117,7 +111,7 @@ pull-from-repos() {
|
|||
cd "$start_dir" || exit 1
|
||||
}
|
||||
|
||||
check-unpushed() {
|
||||
git-check-unpushed() {
|
||||
local start_dir="$PWD"
|
||||
local git_repos=($(find ~ -name .git -type d -not -path '*/.vim/*' -and -not -path '*/.local/*' -and -not -path '*/builds/*' -exec dirname {} \;))
|
||||
for repo in "${git_repos[@]}"; do
|
||||
|
|
Loading…
Add table
Reference in a new issue