diff options
-rw-r--r-- | README.org | 4 | ||||
-rw-r--r-- | lib/config.ml | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -35,3 +35,7 @@ Listed in no particular order. ** Bugs + +- [ ] Proper copyright holder management. + - Should be the main repository author by default, not the ogit + process owner... diff --git a/lib/config.ml b/lib/config.ml index e8628ae..497a084 100644 --- a/lib/config.ml +++ b/lib/config.ml @@ -13,7 +13,7 @@ let default = { user = Sys.getenv "LOGNAME"; default_branch = "master"; - git_project_root = Filename.concat (Sys.getenv "HOME") "git.test"; + git_project_root = Filename.concat (Sys.getenv "HOME") "git"; commits_max_displayed = 10; } |