Commit graph

89 commits

Author SHA1 Message Date
Fabien Potencier 7a31d22b2d minor #44 fix errors found by github.com/dominikh/go-tools/... (jostillmanns)
This PR was merged into the master branch.

Discussion
----------

fix errors found by github.com/dominikh/go-tools/...

lite/splitter/result.go:76:15: should use time.Since instead of time.Now().Sub (S1012)
lite/splitter/state.go:433:25: should omit comparison to bool constant, can be simplified to !copyCommit (S1002)
lite/splitter/utils.go:13:25: should use raw string (`...`) with regexp.MustCompile to avoid having to escape twice (S1007)
lite/splitter/cache.go:90:17: func (*cache).reverse is unused (U1000)

Commits
-------

9d643aa fix errors found by github.com/dominikh/go-tools/...
2018-03-08 07:50:02 -08:00
Joschka Tillmanns 9d643aa621 fix errors found by github.com/dominikh/go-tools/...
lite/splitter/result.go:76:15: should use time.Since instead of time.Now().Sub (S1012)
lite/splitter/state.go:433:25: should omit comparison to bool constant, can be simplified to !copyCommit (S1002)
lite/splitter/utils.go:13:25: should use raw string (`...`) with regexp.MustCompile to avoid having to escape twice (S1007)
lite/splitter/cache.go:90:17: func (*cache).reverse is unused (U1000)
2018-03-08 10:25:31 +01:00
Fabien Potencier cb9c28b8c3 added a ref in README 2017-11-11 08:42:22 -08:00
Fabien Potencier 7e385e9511
Merge pull request #36 from johnnypeck/patch-3
Update README.md
2017-11-09 21:10:05 -08:00
Johnny Peck 63a4daebad
Update README.md
Minor spelling/grammar changes.
2017-11-10 00:08:32 -05:00
Fabien Potencier 86cf1d949a removed an obsolete paragraph in the README 2017-05-29 11:57:47 -07:00
Fabien Potencier 260fd61355 added --version flag 2017-02-22 22:38:57 -08:00
Fabien Potencier 3fb2ea224b fixed typo 2017-02-21 09:49:26 -08:00
Fabien Potencier 538f5638df fixed variable shadowing 2017-02-07 06:44:41 +01:00
Fabien Potencier 7ed5014241 added a link to the manual installation section 2017-02-07 06:43:44 +01:00
Fabien Potencier 0e46db1f94 fixed README link 2017-02-07 06:16:07 +01:00
Fabien Potencier ac76236d44 rewrote README 2017-02-06 00:10:57 -08:00
Fabien Potencier 2ba69378ab updated LICENSE year 2017-01-02 18:53:46 -08:00
Fabien Potencier fb8b89d34d updated README title 2016-11-15 09:57:59 -05:00
Fabien Potencier a0b2684f0b fixed typo 2016-11-15 09:57:09 -05:00
Fabien Potencier f33f70aae6 feature #22 Use raw commit message when splitting repository (kdambekalns)
This PR was merged into the master branch.

Discussion
----------

Use raw commit message when splitting repository

In case the repository to be splt contains commit messages with
leading newlines, the trimming that is applied when using
Commit.Message() can lead to changed hashes, when comparing to
the results git subsplit created.

Fixes #20

Commits
-------

7b9ea56 Use raw commit message when splitting repository
2016-10-03 08:39:43 -07:00
Karsten Dambekalns 7b9ea56ae9
Use raw commit message when splitting repository
In case the repository to be splt contains commit messages with
leading newlines, the trimming that is applied when using
Commit.Message() can lead to changed hashes, when comparing to
the results git subsplit created.

Fixes #20
2016-09-09 15:46:51 +02:00
Fabien Potencier da623618f5 minor #17 Replace co alias with checkout (mrmark)
This PR was merged into the master branch.

Discussion
----------

Replace co alias with checkout

Was trying to run this in a different environment where I don't have any git aliases set up.

Commits
-------

cbd31ff Replace co alias with checkout
2016-08-11 22:16:30 -07:00
Mark Nielsen cbd31ffa2d Replace co alias with checkout 2016-08-11 13:45:37 -07:00
Fabien Potencier 8aff544b94 moved logic away from main 2016-07-31 10:35:17 -04:00
Fabien Potencier 15fcec608b bug #14 fixed edge case (fabpot)
This PR was merged into the master branch.

Discussion
----------

fixed edge case

closes #13

Commits
-------

0e97a5c fixed edge case
2016-07-16 11:51:52 +02:00
Fabien Potencier 0e97a5c4aa fixed edge case 2016-07-15 13:13:55 +02:00
Fabien Potencier 2cf28e37b8 feature #12 added support for Git 2.8+ behavior (fabpot)
This PR was merged into the master branch.

Discussion
----------

added support for Git 2.8+ behavior

closes #11

Commits
-------

85bc041 added support for Git 1.9 behavior
2016-07-10 09:52:28 +02:00
Fabien Potencier 85bc0419ee added support for Git 1.9 behavior 2016-07-09 14:35:01 +02:00
Fabien Potencier ec01ec9e13 adding a link to the 4 minute video 2016-06-11 11:13:03 +02:00
Fabien Potencier 045b01fafa minor #7 Update README.md (inalgnu)
This PR was merged into the master branch.

Discussion
----------

Update README.md

should download + install splitsh/lite package before building binary.

Commits
-------

98daaf2 Update README.md
2016-06-07 09:05:28 +02:00
Fabien Potencier b70b0cc5ef made some code more readable (hopefully) 2016-06-07 09:02:47 +02:00
Fabien Potencier f9b85d5df9 added a link to the dotScale slides 2016-06-07 08:28:09 +02:00
Fabien Potencier 779dbf7fad added a missing link 2016-06-07 07:20:25 +02:00
Fabien Potencier 24cdf6ac9a minor #5 Update README.md (inalgnu)
This PR was merged into the master branch.

Discussion
----------

Update README.md

go get should use flag -d which prevent installing the package.

go get doesn't work for me.

Commits
-------

dd2e651 Update README.md
2016-06-07 07:16:28 +02:00
Fabien Potencier cebfe8a60a minor #4 Fixed two minor typos (javiereguiluz)
This PR was merged into the master branch.

Discussion
----------

Fixed two minor typos

Commits
-------

7a5fd2d Fixed two minor typos
2016-06-07 07:15:34 +02:00
Fabien Potencier a3848465a0 minor #2 Update cache.go (inalgnu)
This PR was merged into the master branch.

Discussion
----------

Update cache.go

clean small redundancy

Commits
-------

b65c9c4 Update cache.go
2016-06-07 07:14:40 +02:00
Inal Djafar 98daaf2716 Update README.md
should download + install splitsh/lite package before building binary.
2016-06-07 00:02:31 +02:00
Inal Djafar dd2e651efc Update README.md
go get should use flag -d which prevent installing the package.

go get doesn't work for me.
2016-06-06 23:31:28 +02:00
Javier Eguiluz 7a5fd2dcad Fixed two minor typos 2016-06-06 19:48:01 +02:00
Inal Djafar b65c9c44b4 Update cache.go
clean small redundancy
2016-06-06 19:27:45 +02:00
Fabien Potencier fabf72bf26 minor #1 Fixed typo (pborreli)
This PR was merged into the master branch.

Discussion
----------

Fixed typo

Commits
-------

f2610ad Fixed typo
2016-06-06 18:53:58 +02:00
Pascal Borreli f2610add66 Fixed typo 2016-06-06 16:48:26 +00:00
Fabien Potencier 7861d21ed4 added initial set of files 2016-06-06 18:27:55 +02:00