33
44the cookbook of git goodies
55
6- ![ status] ( screenshots/status.png )
7- ![ log] ( screenshots/log.png )
6+ ![ status] ( http://qw3rtman.github.io/gg/ screenshots/status.png)
7+ ![ log] ( http://qw3rtman.github.io/gg/ screenshots/log.png)
88
99
1010` gg ` helps you * work with ` git ` more efficiently* , saving you keystrokes for your most prized projects.
@@ -13,19 +13,19 @@ Think of `gg` as a wrapper for the `git` commands that you run all the time.
1313
1414## Getting Started
1515After the [ super painless installation] ( #installation ) , suppose we want to clone the [ awesome spark shell script (created by Zach Holman)] ( https://github.com/holman/spark ) .
16- ![ status] ( screenshots/clone.png )
16+ ![ status] ( http://qw3rtman.github.io/gg/ screenshots/clone.png)
1717Alright, let's switch into that directory.
18- ![ gettingstarted2] ( screenshots/gettingstarted2.png )
18+ ![ gettingstarted2] ( http://qw3rtman.github.io/gg/ screenshots/gettingstarted2.png)
1919After making a quick change, let's check the status of our clone.
20- ![ gettingstarted3] ( screenshots/gettingstarted3.png )
20+ ![ gettingstarted3] ( http://qw3rtman.github.io/gg/ screenshots/gettingstarted3.png)
2121Looks like we haven't staged our changes.
2222
2323In the standard git workflow, we would have to ` git add -A ` and then ` git commit -m "Updated example in README." ` .
2424
2525With ` gg ` , we can simply ` gg c Updated example in README. ` and we're good to go.
26- ![ gettingstarted4] ( screenshots/gettingstarted4.png )
26+ ![ gettingstarted4] ( http://qw3rtman.github.io/gg/ screenshots/gettingstarted4.png)
2727Let's check our clone's status again.
28- ![ gettingstarted5] ( screenshots/gettingstarted5.png )
28+ ![ gettingstarted5] ( http://qw3rtman.github.io/gg/ screenshots/gettingstarted5.png)
2929Looking good!
3030
3131## Installation
@@ -57,49 +57,49 @@ You can also get up and running without npm, but it is not recommended to do so.
5757
5858## Usage
5959### Initializing repositories
60- ![ initialize] ( screenshots/initialize.png )
60+ ![ initialize] ( http://qw3rtman.github.io/gg/ screenshots/initialize.png)
6161* ` $ gg i `
6262* ` $ gg init `
6363* ` $ gg initialize `
6464
6565### Cloning repositories
66- ![ clone] ( screenshots/clone.png )
66+ ![ clone] ( http://qw3rtman.github.io/gg/ screenshots/clone.png)
6767* ` $ gg cl `
6868* ` $ gg clone `
6969
7070### Adding changes
71- ![ add] ( screenshots/add.png )
71+ ![ add] ( http://qw3rtman.github.io/gg/ screenshots/add.png)
7272* ` $ gg a `
7373* ` $ gg aa # add all `
7474* ` $ gg add `
7575
7676### Committing changes
77- ![ commit] ( screenshots/commit.png )
77+ ![ commit] ( http://qw3rtman.github.io/gg/ screenshots/commit.png)
7878* ` $ gg c `
7979* ` $ gg commit `
8080
8181### Pushing commits
82- ![ push] ( screenshots/push.png )
82+ ![ push] ( http://qw3rtman.github.io/gg/ screenshots/push.png)
8383* ` $ gg p `
8484* ` $ gg push `
8585
8686### Pulling commits
87- ![ pull] ( screenshots/pull.png )
87+ ![ pull] ( http://qw3rtman.github.io/gg/ screenshots/pull.png)
8888* ` $ gg pl `
8989* ` $ gg pull `
9090
9191### Fetching commits
92- ![ fetch] ( screenshots/fetch.png )
92+ ![ fetch] ( http://qw3rtman.github.io/gg/ screenshots/fetch.png)
9393* ` $ gg f `
9494* ` $ gg fetch `
9595
9696### Viewing status
97- ![ status] ( screenshots/status.png )
97+ ![ status] ( http://qw3rtman.github.io/gg/ screenshots/status.png)
9898* ` $ gg s `
9999* ` $ gg status `
100100
101101### Viewing log
102- ![ log] ( screenshots/log.png )
102+ ![ log] ( http://qw3rtman.github.io/gg/ screenshots/log.png)
103103* ` $ gg l `
104104* ` $ gg log `
105105
0 commit comments