Skip to content
This repository was archived by the owner on Sep 11, 2020. It is now read-only.

Commit dd8e9b0

Browse files
committed
remove blame package header
2 parents 86fa761 + bd0ca46 commit dd8e9b0

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ You can obtain all this information using the standard `git` command running ove
1818

1919
*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).
2020

21+
### Coming Soon
22+
23+
Blame support: right now we are using a forward version of a line-tracking
24+
algorithm and we are having some problems handling merges. The plan is to get
25+
merges right and change to a backward line-tracking algorithm soon.
2126

2227
Installation
2328
------------
@@ -84,7 +89,7 @@ Date: 2015-12-11 17:57:10 +0100 +0100
8489
Acknowledgements
8590
----------------
8691

87-
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)
92+
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)
8893

8994

9095
License

clients/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func InstallProtocol(scheme string, service common.GitUploadPackService) {
4747
KnownProtocols[scheme] = service
4848
}
4949

50-
// NewGitUploadPackService returns the appropiate upload pack service
50+
// NewGitUploadPackService returns the appropriate upload pack service
5151
// among of the set of known protocols: HTTP, SSH. See `InstallProtocol`
5252
// to add or modify protocols.
5353
func NewGitUploadPackService(repoURL string) (common.GitUploadPackService, error) {

references_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ func compareSideBySide(a []string, b []*Commit) string {
358358

359359
var cherryPicks = [...][]string{
360360
// repo, path, commit a, commit b
361-
[]string{"https://github.com/jamesob/desk.git", "desk", "094d0e7d5d69141c98a606910ba64786c5565da0", "3f34438d54f4a1ca86db8c0f03ed8eb38f20e22c"},
361+
{"https://github.com/jamesob/desk.git", "desk", "094d0e7d5d69141c98a606910ba64786c5565da0", "3f34438d54f4a1ca86db8c0f03ed8eb38f20e22c"},
362362
}
363363

364364
// should detect cherry picks

0 commit comments

Comments
 (0)