This repository has been archived by the owner on Jun 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add retro compatibility for config and explanations
- Loading branch information
1 parent
a4ca315
commit 9a39bfb
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
<?php | ||
/** | ||
* Repositories path is an array of ('repo name'=> 'repo path') | ||
* In this case the repo is in the same folder than the git-pretty-stats | ||
* More flexible than the repositories folder | ||
* In this case the repos are in the same folder than the git-pretty-stats | ||
* More flexible than the repositories folder | ||
* Old system still working : | ||
* return array( | ||
* 'repositoriesPath' => 'repositories' | ||
* ); | ||
**/ | ||
return array( | ||
'repositoriesPath' => array( | ||
'repo-name'=>'../repo-path', | ||
'repo-name2'=>'../repo-path2', | ||
'repo-name3'=>'../repo-path3' | ||
'repo-name' => '../repo-path', | ||
'repo-name2' => '../repo-path2', | ||
'repo-name3' => '../repo-path3' | ||
) | ||
); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters