From c9af70ef702319add4b829262016af0b99cb1a31 Mon Sep 17 00:00:00 2001 From: Miguel Molina Date: Tue, 16 Feb 2016 15:07:05 +0100 Subject: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6347dc7..7c48565 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Date: 2015-12-11 17:57:10 +0100 +0100 Acknowledgements ---------------- -The earlies versions of the [packfile reader](https://godoc.org/gopkg.in/src-d/go-git.v2/formats/packfile) is based on [git-chain](https://github.com/gitchain/gitchain/blob/master/git/pack.go) project done by [@yrashk](https://github.com/yrashk) +The earlier versions of the [packfile reader](https://godoc.org/gopkg.in/src-d/go-git.v2/formats/packfile) are based on [git-chain](https://github.com/gitchain/gitchain/blob/master/git/pack.go), project done by [@yrashk](https://github.com/yrashk) License -- cgit From c6cbc2409bdc7bb8b3ac3d76129dcf058f0870c9 Mon Sep 17 00:00:00 2001 From: Alberto Cortés Date: Tue, 16 Feb 2016 14:50:58 +0100 Subject: [README] Adds Coming Soon section --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6347dc7..9ad0dca 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,11 @@ You can obtain all this information using the standard `git` command running ove *Yes!!!*, we have been using *go-git* at [source{d}](http://sourced.tech) since August 2015 to analyze all GitHub public repositories (i.e. 16M of repositories). +### Coming Soon + +Blame support: right now we are using a forward version of a line-tracking +algorithm and we are having some problems handling merges. The plan is to get +merges right and change to a backward line-tracking algorithm soon. Installation ------------ @@ -84,7 +89,7 @@ Date: 2015-12-11 17:57:10 +0100 +0100 Acknowledgements ---------------- -The earlies versions of the [packfile reader](https://godoc.org/gopkg.in/src-d/go-git.v2/formats/packfile) is based on [git-chain](https://github.com/gitchain/gitchain/blob/master/git/pack.go) project done by [@yrashk](https://github.com/yrashk) +The earlier versions of the [packfile reader](https://godoc.org/gopkg.in/src-d/go-git.v2/formats/packfile) are based on [git-chain](https://github.com/gitchain/gitchain/blob/master/git/pack.go), project done by [@yrashk](https://github.com/yrashk) License -- cgit From ede7162d6f8f911c3df056b6f3ec84bbb42c213b Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Wed, 17 Feb 2016 00:41:16 +0900 Subject: gofmt -s --- references_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/references_test.go b/references_test.go index ddc1e05..4fa4f76 100644 --- a/references_test.go +++ b/references_test.go @@ -358,7 +358,7 @@ func compareSideBySide(a []string, b []*Commit) string { var cherryPicks = [...][]string{ // repo, path, commit a, commit b - []string{"https://github.com/jamesob/desk.git", "desk", "094d0e7d5d69141c98a606910ba64786c5565da0", "3f34438d54f4a1ca86db8c0f03ed8eb38f20e22c"}, + {"https://github.com/jamesob/desk.git", "desk", "094d0e7d5d69141c98a606910ba64786c5565da0", "3f34438d54f4a1ca86db8c0f03ed8eb38f20e22c"}, } // should detect cherry picks -- cgit From 99fa2c88a9fcc4f363fd840035a8d4ae5cb2b20f Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Wed, 17 Feb 2016 00:42:39 +0900 Subject: fix typo --- blame.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blame.go b/blame.go index 66224fe..2ef1210 100644 --- a/blame.go +++ b/blame.go @@ -2,7 +2,7 @@ // // Blaming a file is finding what commit was the last to modify each of // the lines in the file, therefore the output of a blaming operation is -// usualy a slice of commits, one commit per line in the file. +// usually a slice of commits, one commit per line in the file. // // This package also provides a pretty print function to output the // results of a blame in a similar format to the git-blame command. -- cgit From 3b75ac9fe04e7b44f1d924368db747ca6524afa1 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Wed, 17 Feb 2016 00:43:01 +0900 Subject: fix typo --- clients/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/common.go b/clients/common.go index 039404d..f7868cf 100644 --- a/clients/common.go +++ b/clients/common.go @@ -47,7 +47,7 @@ func InstallProtocol(scheme string, service common.GitUploadPackService) { KnownProtocols[scheme] = service } -// NewGitUploadPackService returns the appropiate upload pack service +// NewGitUploadPackService returns the appropriate upload pack service // among of the set of known protocols: HTTP, SSH. See `InstallProtocol` // to add or modify protocols. func NewGitUploadPackService(repoURL string) (common.GitUploadPackService, error) { -- cgit