Skip to content

Commit

Permalink
Merge pull request #134 from askgitdev/README-wording-fixes
Browse files Browse the repository at this point in the history
some wording fixes in the README
  • Loading branch information
patrickdevivo authored Jul 20, 2021
2 parents 6b0e681 + ddbb0aa commit 9771027
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Similar to `git log`, the `commits` table includes all commits in the history of

Params:
1. `repository` - path to a local (on disk) or remote (http(s)) repository
2. `ref` - return commits starting at this ref (i.e. branch name or SHA), defaults to `HEAD`
2. `rev` - return commits starting at this revision (i.e. branch name or SHA), defaults to `HEAD`

```sql
-- return all commits starting at HEAD
Expand Down Expand Up @@ -175,8 +175,8 @@ Params:

Params:
1. `repository` - path to a local (on disk) or remote (http(s)) repository
2. `ref` - commit hash to use for retrieving stats, defaults to `HEAD`
3. `to_ref` - commit hash to calculate stats relative to
2. `rev` - commit hash (or branch/tag name) to use for retrieving stats, defaults to `HEAD`
3. `to_rev` - commit hash to calculate stats relative to

```sql
-- return stats of HEAD
Expand All @@ -199,7 +199,7 @@ SELECT commits.hash, stats.* FROM commits, stats('', commits.hash)

Params:
1. `repository` - path to a local (on disk) or remote (http(s)) repository
2. `ref` - commit hash to use for retrieving files, defaults to `HEAD`
2. `rev` - commit hash (or branch/tag name) to use for retrieving files in, defaults to `HEAD`

##### `blame`

Expand All @@ -212,7 +212,7 @@ Similar to `git blame`, the `blame` table includes blame information for all fil

Params:
1. `repository` - path to a local (on disk) or remote (http(s)) repository
2. `ref` - commit hash to use for retrieving files, defaults to `HEAD`
2. `rev` - commit hash (or branch/tag name) to use for retrieving blame information from, defaults to `HEAD`
3. `file_path` - path of file to blame

#### Utilities
Expand Down

0 comments on commit 9771027

Please sign in to comment.