git-u
v1.1.1
Published
Quick git command line
Downloads
11
Maintainers
Readme
git-u
Short github command line by auto-building github url.
Installation
This command will be required the node.js or io.js environment. So, please install one of them into your computer before installing this command.
$ npm install -g git-u
How to use
$ git-u [command] owner repository [local]
where:
command
is the git's command. Default isclone
.owner
is the repository's owner name.repository
is the repository's name.local
is the clone local dir. This option is only available with theclone
command.
git-u
builds the github's clone url by using your owner
and repository
option.
Examples
git-u dominhhai git-u
runs thegit clone https://github.com/dominhhai/git-u.git
command.git-u clone dominhhai git-u gitu
runs thegit clone https://github.com/dominhhai/git-u.git gitu
command.git-u remote add origin dominhhai git-u
runs thegit remote add origin https://github.com/dominhhai/git-u.git
command.