Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
8ed6dd5f
Commit
8ed6dd5f
authored
13 years ago
by
Daniel Bolton
Browse files
Options
Download
Email Patches
Plain Diff
Add functions for new GH repos.
parent
fd55d53e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plugins/github/github.plugin.zsh
+41
-0
plugins/github/github.plugin.zsh
with
41 additions
and
0 deletions
+41
-0
plugins/github/github.plugin.zsh
View file @
8ed6dd5f
...
@@ -4,3 +4,44 @@ if [ "$commands[(I)hub]" ]; then
...
@@ -4,3 +4,44 @@ if [ "$commands[(I)hub]" ]; then
# eval `hub alias -s zsh`
# eval `hub alias -s zsh`
function
git
(){
hub
"
$@
"
}
function
git
(){
hub
"
$@
"
}
fi
fi
# Functions #################################################################
# https://github.com/dbb
# These are taken directly from the instructions you see after you create a new
# repo. As the names imply, new_gh() assumes you're starting from scratch in a
# directory named after the repo (this name is the only argument it takes), and
# exist_gh() assumes that you've already initialized git in the given directory
# (again, the only argument).
# set up a new repo
new_gh
()
{
# [NAME_OF_REPO]
repo
=
$1
name
=
$(
igit config user.name
)
email
=
$(
git config user.email
)
user
=
$(
git config github.user
)
mkdir
"
$repo
"
cd
"
$repo
"
git init
touch
README
git add README
git commit
-m
'Initial commit.'
git remote add origin git@github.com:
${
user
}
/
${
name
}
.git
git push
-u
origin master
}
exist_gh
()
{
# [DIRECTORY]
cd
"
$1
"
name
=
$(
git config user.name
)
email
=
$(
git config user.email
)
user
=
$(
git config github.user
)
git remote add origin git@github.com:
${
user
}
/
${
name
}
.git
git push
-u
origin master
}
# End Functions #############################################################
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help