diff options
author | Mike Riley <mriley@uber.com> | 2019-05-17 12:18:10 -0400 |
---|---|---|
committer | Mike Riley <mikeriley@yelirekim.com> | 2019-05-17 12:33:55 -0400 |
commit | f284cd4c2f97e3143e70e64cad4e6f490a6b49f1 (patch) | |
tree | d3984d80797aa1bd4d39ac168e66aacead508103 /config/config.go | |
parent | 52fcf7d8a3c2da58769e105a26240e3e697fedeb (diff) | |
download | go-git-f284cd4c2f97e3143e70e64cad4e6f490a6b49f1.tar.gz |
Support the 'rebase' config key for branches
Signed-off-by: Mike Riley <mikeriley@yelirekim.com>
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index 2c3b8b9..ea614e9 100644 --- a/config/config.go +++ b/config/config.go @@ -120,6 +120,7 @@ const ( commentCharKey = "commentChar" windowKey = "window" mergeKey = "merge" + rebaseKey = "rebase" // DefaultPackWindow holds the number of previous objects used to // generate deltas. The value 10 is the same used by git command. |