improved readme

This commit is contained in:
2014-06-20 18:04:44 +02:00
parent 4204fea99a
commit 361ea3aee5
+23 -9
View File
@@ -6,15 +6,29 @@ Script for automating the most common git tasks.
Usage
-----
# git status
g check
**Check status**
# git status
# git add --all
# git commit -m "...."
# git push origin master
g send
- `git status`
# git pull
g pull
```
g check
```
**Pull from origin/master**
- ` git pull`
```
g pull
```
**Send to origin/master**
- `git status` (if no changes, stop here)
- `git add --all`
- `git commit -m "...."` (ask for message)
- `git push origin master`
```
g send
```