Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wixette/googdiff
Command-line diff tool, a wrapper of Google's diff-match-patch module.
https://github.com/wixette/googdiff
Last synced: about 5 hours ago
JSON representation
Command-line diff tool, a wrapper of Google's diff-match-patch module.
- Host: GitHub
- URL: https://github.com/wixette/googdiff
- Owner: wixette
- License: apache-2.0
- Created: 2020-06-03T03:47:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-07T04:58:30.000Z (over 4 years ago)
- Last Synced: 2024-12-14T13:36:43.957Z (30 days ago)
- Language: HTML
- Homepage:
- Size: 225 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# googdiff: command-line diff tool, a wrapper of Google's diff-match-patch module.
See [the API doc of Google's diff-match-patch
module](https://github.com/google/diff-match-patch).## Install googdiff with pip
```
pip install googdiff
```## Usage
```
# Usage info
googdiff --help# Show diffs in console mode:
googdiff file1 file2# or:
googdiff -c file1 file2# Show diffs in web browser:
googdiff -b file1 file2
```## Git diff with googdiff
```
# in text mode:
git difftool -y --extcmd=googdiff# or, in browser:
git difftool -y --extcmd='googdiff -b'
```## Screenshots