codebase-cli 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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