Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
8c48f10a
Commit
8c48f10a
authored
Aug 06, 2011
by
Daniel Bolton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add functions for new GH repos.
parent
8ed6dd5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
16 deletions
+30
-16
github.plugin.zsh
plugins/github/github.plugin.zsh
+30
-16
No files found.
plugins/github/github.plugin.zsh
View file @
8c48f10a
...
@@ -9,19 +9,13 @@ fi
...
@@ -9,19 +9,13 @@ fi
# https://github.com/dbb
# 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
)
# empty_gh [NAME_OF_REPO]
email
=
$(
git config user.email
)
#
user
=
$(
git config github.user
)
# Use this when creating a new repo from scratch.
empty_gh
()
{
# [NAME_OF_REPO]
repo
=
$1
ghuser
=
$(
git config github.user
)
mkdir
"
$repo
"
mkdir
"
$repo
"
cd
"
$repo
"
cd
"
$repo
"
...
@@ -29,17 +23,37 @@ new_gh() { # [NAME_OF_REPO]
...
@@ -29,17 +23,37 @@ new_gh() { # [NAME_OF_REPO]
touch
README
touch
README
git add README
git add README
git commit
-m
'Initial commit.'
git commit
-m
'Initial commit.'
git remote add origin git@github.com:
${
user
}
/
${
name
}
.git
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
git push
-u
origin master
git push
-u
origin master
}
}
# 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.
exist_gh
()
{
# [DIRECTORY]
exist_gh
()
{
# [DIRECTORY]
cd
"
$1
"
cd
"
$1
"
name
=
$(
git config user.name
)
name
=
$(
git config user.name
)
email
=
$(
git config user.email
)
ghuser
=
$(
git config github.user
)
user
=
$(
git config github.user
)
git remote add origin git@github.com:
${
user
}
/
${
name
}
.git
git remote add origin git@github.com:
${
ghuser
}
/
${
repo
}
.git
git push
-u
origin master
git push
-u
origin master
}
}
...
...
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