diff options
-rw-r--r-- | app/models/repository/git.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/models/repository/git.rb b/app/models/repository/git.rb index 9349f3c11..c90862995 100644 --- a/app/models/repository/git.rb +++ b/app/models/repository/git.rb @@ -49,10 +49,14 @@ class Repository::Git < Repository # With SCM's that have a sequential commit numbering, redmine is able to be # clever and only fetch changesets going forward from the most recent one - # it knows about. However, with git, you never know if people have merged + # it knows about. + # However, with git, you never know if people have merged # commits into the middle of the repository history, so we should parse - # the entire log. Since it's way too slow for large repositories, we only - # parse 1 week before the last known commit. + # the entire log. + # + # Since it's way too slow for large repositories, + # we only parse 1 week before the last known commit. + # # The repository can still be fully reloaded by calling #clear_changesets # before fetching changesets (eg. for offline resync) def fetch_changesets |