aboutsummaryrefslogtreecommitdiffstats
path: root/github-suggestion
AgeCommit message (Collapse)Author
2020-08-22Idea for adding diff coloursdiff-coloursTeddy Wing
Ideas for getting diff colours from the Git config and parsing them using 'colorparse'. Leaving this aside and planning to add diff colours by executing `git-diff` instead. Shelling out to `git diff` would allow us to accept diff command line options like `--word-diff` and have them work transparently.
2020-08-06Increase version v0.0.1 -> v0.1.0v0.1.0Teddy Wing
2020-08-06Remove `github-suggestion/Cargo.lock`Teddy Wing
This is subsumed into `Cargo.lock` and doesn't do anything any more.
2020-08-06Rename the project `git-suggestion`Teddy Wing
Since this is a Git command, this makes more sense to me.
2020-08-05client::Error::Deserialize: Include source error messageTeddy Wing
Forgot to include this so we didn't get extra information about the cause of the error.
2020-08-04Add license (GNU GPLv3+)Teddy Wing
2020-08-02Add documentation commentsTeddy Wing
Light documentation for our various functions and types.
2020-08-01Move library to a separate crateTeddy Wing
Keep the binaries in the root crate, and add a new crate for the `github-suggestion` library. I want to add some library code to the CLI programs to extract common functionality between the different binaries.