oh-my-zsh/plugins/github/github.plugin.zsh

62 lines
1.5 KiB
Bash
Raw Normal View History

# hub alias from defunkt
# https://github.com/defunkt/hub
2011-03-19 14:29:22 +00:00
if [ "$commands[(I)hub]" ]; then
# eval `hub alias -s zsh`
function git(){hub "$@"}
fi
2011-08-06 19:58:40 +00:00
# Functions #################################################################
# https://github.com/dbb
2011-08-06 20:15:09 +00:00
# empty_gh [NAME_OF_REPO]
#
# Use this when creating a new repo from scratch.
empty_gh() { # [NAME_OF_REPO]
repo = $1
ghuser=$( git config github.user )
2011-08-06 19:58:40 +00:00
mkdir "$repo"
cd "$repo"
git init
touch README
git add README
git commit -m 'Initial commit.'
2011-08-06 20:15:09 +00:00
git remote add origin git@github.com:${ghuser}/${repo}.git
git push -u origin master
}
# new_gh [DIRECTORY]
#
# Use this when you have a directory that is not yet set up for git.
# This function will add all non-hidden files to git.
new_gh() { # [DIRECTORY]
cd "$1"
ghuser=$( git config github.user )
git init
# add all non-dot files
print '.*'"\n"'*~' >> .gitignore
git add ^.*
git commit -m 'Initial commit.'
git remote add origin git@github.com:${ghuser}/${repo}.git
2011-08-06 19:58:40 +00:00
git push -u origin master
}
2011-08-06 20:15:09 +00:00
# exist_gh [DIRECTORY]
#
# Use this when you have a git repo that's ready to go and you want to add it
# to your GitHub.
2011-08-06 19:58:40 +00:00
exist_gh() { # [DIRECTORY]
cd "$1"
name=$( git config user.name )
2011-08-06 20:15:09 +00:00
ghuser=$( git config github.user )
2011-08-06 19:58:40 +00:00
2011-08-06 20:15:09 +00:00
git remote add origin git@github.com:${ghuser}/${repo}.git
2011-08-06 19:58:40 +00:00
git push -u origin master
}
# End Functions #############################################################