codebase-cli 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +23 -1
- data/bin/cb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -1,7 +1,29 @@
|
|
1
1
|
# Codebase Command Line Interface
|
2
2
|
|
3
|
-
Command utilty to open codebase repositories in you browser
|
3
|
+
Command utilty to open codebase repositories in you browser
|
4
4
|
|
5
|
+
## Install
|
6
|
+
|
7
|
+
$ gem install codebase-cli
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
#### Enter the repository folder
|
12
|
+
$ cd <CODEBASE_REPOSITORY>
|
13
|
+
|
14
|
+
#### open the repository homepage
|
15
|
+
$ cb
|
16
|
+
|
17
|
+
#### open the specified file
|
18
|
+
$ cb <file>
|
19
|
+
|
20
|
+
#### open the specified object(commit, tag, branch)
|
21
|
+
$ cb -r <object>
|
22
|
+
|
23
|
+
#### open the specified branch
|
24
|
+
$ cb -b <branch>
|
25
|
+
|
26
|
+
|
5
27
|
## Authors
|
6
28
|
|
7
29
|
* [Lucas Fais](https://github.com/lucasfais)
|
data/bin/cb
CHANGED