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
dff6333b
Commit
dff6333b
authored
Apr 24, 2013
by
Robby Russell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
parents
f44d4035
02f86c4a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
0 deletions
+42
-0
git-flow.plugin.zsh
plugins/git-flow/git-flow.plugin.zsh
+12
-0
rails4.plugin.zsh
plugins/rails4/rails4.plugin.zsh
+30
-0
No files found.
plugins/git-flow/git-flow.plugin.zsh
View file @
dff6333b
...
@@ -88,6 +88,8 @@ __git-flow-release ()
...
@@ -88,6 +88,8 @@ __git-flow-release ()
'start:Start a new release branch.'
'start:Start a new release branch.'
'finish:Finish a release branch.'
'finish:Finish a release branch.'
'list:List all your release branches. (Alias to `git flow release`)'
'list:List all your release branches. (Alias to `git flow release`)'
'publish: public'
'track: track'
)
)
_describe
-t
commands
'git flow release'
subcommands
_describe
-t
commands
'git flow release'
subcommands
_arguments
\
_arguments
\
...
@@ -115,6 +117,16 @@ __git-flow-release ()
...
@@ -115,6 +117,16 @@ __git-flow-release ()
':version:__git_flow_version_list'
':version:__git_flow_version_list'
;;
;;
(
publish
)
_arguments
\
':version:__git_flow_version_list'
\
;;
(
track
)
_arguments
\
':version:__git_flow_version_list'
\
;;
*
)
*
)
_arguments
\
_arguments
\
-v
'[Verbose (more) output]'
-v
'[Verbose (more) output]'
...
...
plugins/rails4/rails4.plugin.zsh
0 → 100644
View file @
dff6333b
# Rails 4 aliases
function
_rails_command
()
{
if
[
-e
"script/server"
]
;
then
ruby script/
$@
elif
[
-e
"script/rails"
]
;
then
ruby script/rails
$@
else
ruby bin/rails
$@
fi
}
alias
rc
=
'_rails_command console'
alias
rd
=
'_rails_command destroy'
alias
rdb
=
'_rails_command dbconsole'
alias
rdbm
=
'rake db:migrate db:test:clone'
alias
rg
=
'_rails_command generate'
alias
rgm
=
'_rails_command generate migration'
alias
rp
=
'_rails_command plugin'
alias
ru
=
'_rails_command runner'
alias
rs
=
'_rails_command server'
alias
rsd
=
'_rails_command server --debugger'
alias
devlog
=
'tail -f log/development.log'
alias
rdm
=
'rake db:migrate'
alias
rdc
=
'rake db:create'
alias
rdr
=
'rake db:rollback'
alias
rds
=
'rake db:seed'
alias
rlc
=
'rake log:clear'
alias
rn
=
'rake notes'
alias
rr
=
'rake routes'
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