diff --git a/LargeCrowd_ip_master/authorship.json b/LargeCrowd_ip_master/authorship.json index 867325b1..8d746b28 100644 --- a/LargeCrowd_ip_master/authorship.json +++ b/LargeCrowd_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/duke/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.DateTimeException;","lastModifiedDate":"2024-02-02"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-02"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-02"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-02"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Deadline class","lastModifiedDate":"2024-02-01"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate byDate;","lastModifiedDate":"2024-02-02"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected String byString;","lastModifiedDate":"2024-02-02"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Deadline","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" * @param by","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @throws DateTimeException","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" this.byString \u003d by;","lastModifiedDate":"2024-02-02"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-02"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.byDate \u003d parseDate(by, DATE_FORMAT_1, DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the by string","lastModifiedDate":"2024-02-07"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" } catch (DateTimeException e) {","lastModifiedDate":"2024-02-02"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" throw new DateTimeException(\"Error parsing date in Deadline: \" + e.getMessage());","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-02"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" return \"D\";","lastModifiedDate":"2024-02-01"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" DateTimeFormatter displayFormatter \u003d DATE_FORMAT_4;","lastModifiedDate":"2024-02-07"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" return super.toString() + \" (by: \" + byDate.format(displayFormatter) + \")\";","lastModifiedDate":"2024-02-02"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":42}},{"path":"src/main/java/duke/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" * Main class","lastModifiedDate":"2024-02-01"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"public class Duke {","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private Storage storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" private TaskList tasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" private Parser parser;","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Duke","lastModifiedDate":"2024-02-07"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" public Duke() {","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" this.storage \u003d new Storage(taskList);","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" storage.loadTaskList();","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" this.tasks \u003d new TaskList(storage, taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" this.parser \u003d new Parser(tasks);","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" * Starts the program","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * @throws StringIndexOutOfBoundsException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void start() {","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" ui.showGreeting();","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" String input \u003d ui.getUserInput();","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" while (true) {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" if (!parser.executeUserInput(input)) {","lastModifiedDate":"2024-02-06"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" input \u003d ui.getUserInput();","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" ui.showGoodbye();","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" ui.closeScanner();","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" * Main method","lastModifiedDate":"2024-02-07"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" * @param args","lastModifiedDate":"2024-02-07"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-02-01"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" Duke mainApp \u003d new Duke();","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" mainApp.start();","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" } ","lastModifiedDate":"2024-02-01"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":60}},{"path":"src/main/java/duke/Events.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.DateTimeException;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Events class","lastModifiedDate":"2024-02-01"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Events extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate fromDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate toDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" protected String fromString;","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" protected String toString;","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Events","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" *","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * @param from","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * @param to","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @throws DateTimeException","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Events(String description, String from, String to) {","lastModifiedDate":"2024-02-01"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" this.fromString \u003d from;","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" this.toString \u003d to;","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" this.fromDate \u003d parseDate(from, DATE_FORMAT_1, DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the from string","lastModifiedDate":"2024-02-07"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" this.toDate \u003d parseDate( ","lastModifiedDate":"2024-02-07"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" to, DATE_FORMAT_1,DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the to string","lastModifiedDate":"2024-02-07"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" } catch (DateTimeException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" throw new DateTimeException(\"Error parsing date in Events: \" + e.getMessage());","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" return \"E\";","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" DateTimeFormatter displayFormatter \u003d DATE_FORMAT_4;","lastModifiedDate":"2024-02-07"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" return super.toString() + \" (from: \" + fromDate.format(displayFormatter) + \", to: \" ","lastModifiedDate":"2024-02-07"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" + toDate.format(displayFormatter) + \")\";","lastModifiedDate":"2024-02-07"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":50}},{"path":"src/main/java/duke/Parser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":" * This class is responsible for making sense of the user input","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"public class Parser {","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private TaskList taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Parser ","lastModifiedDate":"2024-02-07"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" * @param taskList","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" public Parser(TaskList taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * Executes user input","lastModifiedDate":"2024-02-07"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" * @param input user input","lastModifiedDate":"2024-02-07"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" * @return boolean","lastModifiedDate":"2024-02-07"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" */ ","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" public boolean executeUserInput(String input) {","lastModifiedDate":"2024-02-06"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" if (input.equals(\"bye\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" return false;","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" if (input.equals(\"list\")) { // show list","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" taskList.printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"mark done\")) { // mark as done","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(input.substring(9).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" taskList.markDone(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"mark undone\")) { // mark as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(input.substring(11).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" taskList.markUndone(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" taskList.addTask(input);","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" return true;","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":52}},{"path":"src/main/java/duke/Storage.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.io.IOException;","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Files;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Path;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Paths;","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":"public class Storage {","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" private static final String FOLDER_PATH \u003d \"./tasklist\";","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" private static final String TASKLIST_PATH \u003d FOLDER_PATH + \"/tasklist.txt\";","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" private Path taskListPath \u003d Paths.get(TASKLIST_PATH);","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" private Path folderPath \u003d Paths.get(FOLDER_PATH);","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Storage","lastModifiedDate":"2024-02-07"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" *","lastModifiedDate":"2024-02-07"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @param taskList","lastModifiedDate":"2024-02-07"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Storage(ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" createTaskList();","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * Loads taskList from file","lastModifiedDate":"2024-02-07"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void loadTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" // Clear existing tasks before loading","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.clear();","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" // Load tasks from file","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cString\u003e taskListFromFile \u003d new ArrayList\u003c\u003e(Files.readAllLines(taskListPath));","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" // For each task in the file, add it to the taskList","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" for (String task : taskListFromFile) {","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" String[] taskParts \u003d task.split(\" \\\\| \", 3);","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" String taskType \u003d taskParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" String taskStatus \u003d taskParts[1];","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" String taskDescription \u003d taskParts[2];","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" switch (taskType) {","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" case \"T\":","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" Todo newTodo \u003d new Todo(taskDescription);","lastModifiedDate":"2024-02-03"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" newTodo.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newTodo);","lastModifiedDate":"2024-02-03"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" case \"D\":","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" String[] deadlineParts \u003d taskDescription.split(\" \\\\(by: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" String deadlineDescription \u003d deadlineParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" String deadlineByDateTime \u003d deadlineParts[1]","lastModifiedDate":"2024-02-07"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" .substring(0, deadlineParts[1].length() - 1);","lastModifiedDate":"2024-02-07"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" Deadline newDeadline \u003d new Deadline(deadlineDescription, deadlineByDateTime);","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" newDeadline.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newDeadline);","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" case \"E\":","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" String[] eventParts \u003d taskDescription.split(\" \\\\(from: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" String eventDescription \u003d eventParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" String eventAt \u003d eventParts[1].substring(0, eventParts[1].length() - 1);","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" String[] eventAtParts \u003d eventAt.split(\", to: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" String eventFrom \u003d eventAtParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" String eventTo \u003d eventAtParts[1];","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" Events newEvent \u003d new Events(eventDescription, eventFrom, eventTo);","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" newEvent.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newEvent);","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" default:","lastModifiedDate":"2024-02-03"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Unrecognized task type: \" + task);","lastModifiedDate":"2024-02-03"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" throw new IOException(\"Error loading data from file: unrecognized task type\");","lastModifiedDate":"2024-02-04"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error loading data from file: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" e.printStackTrace();","lastModifiedDate":"2024-02-03"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":94,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":95,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":96,"author":{"gitId":"LargeCrowd"},"content":" * Saves taskList to file","lastModifiedDate":"2024-02-07"},{"lineNumber":97,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":98,"author":{"gitId":"LargeCrowd"},"content":" public void saveTaskListToFile() {","lastModifiedDate":"2024-02-04"},{"lineNumber":99,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":100,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cString\u003e newTaskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-03"},{"lineNumber":101,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-03"},{"lineNumber":102,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-03"},{"lineNumber":103,"author":{"gitId":"LargeCrowd"},"content":" newTaskList.add(task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":104,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":105,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":106,"author":{"gitId":"LargeCrowd"},"content":" Files.write(taskListPath, newTaskList);","lastModifiedDate":"2024-02-03"},{"lineNumber":107,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":108,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error saving data to file: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":109,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":110,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":111,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":112,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":113,"author":{"gitId":"LargeCrowd"},"content":" * Creates taskList and tasklist.txt if they do not exist","lastModifiedDate":"2024-02-07"},{"lineNumber":114,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":115,"author":{"gitId":"LargeCrowd"},"content":" private void createTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":116,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":117,"author":{"gitId":"LargeCrowd"},"content":" if (Files.notExists(folderPath)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":118,"author":{"gitId":"LargeCrowd"},"content":" Files.createDirectories(folderPath);","lastModifiedDate":"2024-02-04"},{"lineNumber":119,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":120,"author":{"gitId":"LargeCrowd"},"content":" if (Files.notExists(taskListPath)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":121,"author":{"gitId":"LargeCrowd"},"content":" Files.createFile(taskListPath);","lastModifiedDate":"2024-02-04"},{"lineNumber":122,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":123,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":124,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error creating tasklist: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":125,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":126,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":127,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":127}},{"path":"src/main/java/duke/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.util.Locale;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Task class","lastModifiedDate":"2024-02-01"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected String task;","lastModifiedDate":"2024-02-01"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-01"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_1 \u003d DateTimeFormatter.ofPattern(\"d/M/yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_2 \u003d DateTimeFormatter.ofPattern(\"yyyy-M-d\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_3 \u003d DateTimeFormatter.ofPattern(\"d-M-yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_4 \u003d DateTimeFormatter.ofPattern(\"d MMM yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Task","lastModifiedDate":"2024-02-01"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @param task","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Task(String task) {","lastModifiedDate":"2024-02-01"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.task \u003d task;","lastModifiedDate":"2024-02-01"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-01"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * Mark task as done","lastModifiedDate":"2024-02-01"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void markDone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d true;","lastModifiedDate":"2024-02-01"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" * Mark task as undone","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" public void markUndone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-01"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" * Check if task is done","lastModifiedDate":"2024-02-01"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-01"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" * @return boolean","lastModifiedDate":"2024-02-01"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" public boolean isDone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" return this.isDone;","lastModifiedDate":"2024-02-01"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" return \"\";","lastModifiedDate":"2024-02-01"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" public String getTaskStatus() {","lastModifiedDate":"2024-02-06"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" return this.isDone ? \"done\" : \"not done\";","lastModifiedDate":"2024-02-01"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" * Parse the date string and return a LocalDate object","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" * @param by","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" * @param formatters","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" * @return LocalDate","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" * @throws IllegalArgumentException","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" * @throws Exception","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" protected static LocalDate parseDate(String by, DateTimeFormatter... formatters) {","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" for (DateTimeFormatter formatter : formatters) {","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" return LocalDate.parse(by, formatter);","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" } catch (Exception e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" // Try the next format","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" // If none of the formats match, you may want to handle this case","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" throw new IllegalArgumentException(\"Date could not be parsed with any of the provided formats\");","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" return getTaskType() + \" | \" + getTaskStatus() + \" | \" + this.task;","lastModifiedDate":"2024-02-06"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" * TaskType enum","lastModifiedDate":"2024-02-01"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":"enum TaskType {","lastModifiedDate":"2024-02-01"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" TODO,","lastModifiedDate":"2024-02-01"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" DEADLINE,","lastModifiedDate":"2024-02-01"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" EVENT,","lastModifiedDate":"2024-02-01"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" HELP,","lastModifiedDate":"2024-02-01"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" DELETE","lastModifiedDate":"2024-02-07"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":93}},{"path":"src/main/java/duke/TaskList.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"public class TaskList {","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" private int taskIndex;","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private Storage storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" public TaskList(Storage storage, ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" this.storage \u003d storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * Adds task to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" public void addTask(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" TaskType taskType \u003d getTaskType(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" switch (taskType) {","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" case TODO:","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" addTodoTask(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" case DEADLINE:","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" addDeadline(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" case EVENT:","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" addEvent(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" case HELP:","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" ui.showHelp();","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" case DELETE:","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(task.substring(6).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" deleteTask(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Please enter a valid task index.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" default:","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Sorry, that\u0027s not a command :( Enter \u0027help\u0027 for instructions.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" * Adds todoTask to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" public void addTodoTask(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" String todoDescription \u003d task.substring(4).trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" if (todoDescription.isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Please enter a valid todo task.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" Todo newTodo \u003d new Todo (todoDescription);","lastModifiedDate":"2024-02-04"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newTodo);","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added todo: \" + todoDescription);","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" * Adds deadline to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" public void addDeadline(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" String[] deadlineDescription \u003d task.substring(8).trim().split(\"/by\", 2);","lastModifiedDate":"2024-02-04"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" if (deadlineDescription.length !\u003d 2 || deadlineDescription[0].trim().isEmpty() ","lastModifiedDate":"2024-02-04"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" || deadlineDescription[1].trim().isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Enter \u0027deadline \u003ctask\u003e /by \u003cDEADLINE\u003e\u0027\");","lastModifiedDate":"2024-02-04"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" String description \u003d deadlineDescription[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":" String by \u003d deadlineDescription[1].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" Deadline newDeadline \u003d new Deadline(description, by);","lastModifiedDate":"2024-02-04"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newDeadline);","lastModifiedDate":"2024-02-04"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added deadline: \" + newDeadline.toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":94,"author":{"gitId":"LargeCrowd"},"content":" * Adds eventTask to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":95,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":96,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":97,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":98,"author":{"gitId":"LargeCrowd"},"content":" public void addEvent(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":99,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":100,"author":{"gitId":"LargeCrowd"},"content":" String[] eventParts \u003d task.substring(6).trim().split(\"/from\");","lastModifiedDate":"2024-02-04"},{"lineNumber":101,"author":{"gitId":"LargeCrowd"},"content":" if (eventParts.length \u003d\u003d 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":102,"author":{"gitId":"LargeCrowd"},"content":" String[] durationParts \u003d eventParts[1].trim().split(\"/to\");","lastModifiedDate":"2024-02-04"},{"lineNumber":103,"author":{"gitId":"LargeCrowd"},"content":" if (durationParts.length \u003d\u003d 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":104,"author":{"gitId":"LargeCrowd"},"content":" String desc \u003d eventParts[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":105,"author":{"gitId":"LargeCrowd"},"content":" String from \u003d durationParts[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":106,"author":{"gitId":"LargeCrowd"},"content":" String to \u003d durationParts[1].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":107,"author":{"gitId":"LargeCrowd"},"content":" Events newEvent \u003d new Events(desc, from, to);","lastModifiedDate":"2024-02-04"},{"lineNumber":108,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newEvent);","lastModifiedDate":"2024-02-04"},{"lineNumber":109,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":110,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added event: \" + desc + \" (from: \" + from + \", to: \" + to + \")\");","lastModifiedDate":"2024-02-04"},{"lineNumber":111,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":112,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-03"},{"lineNumber":113,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":114,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input for event. \"","lastModifiedDate":"2024-02-07"},{"lineNumber":115,"author":{"gitId":"LargeCrowd"},"content":" + \"Please use the format: event \u003ctask\u003e /from \u003cstart time\u003e /to \u003cend time\u003e\");","lastModifiedDate":"2024-02-07"},{"lineNumber":116,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":117,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":118,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input for event. \"","lastModifiedDate":"2024-02-07"},{"lineNumber":119,"author":{"gitId":"LargeCrowd"},"content":" + \"Please use the format: event \u003ctask\u003e /from \u003cstart time\u003e /to \u003cend time\u003e\");","lastModifiedDate":"2024-02-07"},{"lineNumber":120,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":121,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":122,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":123,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":124,"author":{"gitId":"LargeCrowd"},"content":" * Deletes task from taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":125,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":126,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be deleted","lastModifiedDate":"2024-02-04"},{"lineNumber":127,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":129,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":130,"author":{"gitId":"LargeCrowd"},"content":" public void deleteTask(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":131,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":132,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Noted. I\u0027ve removed this task:\" + \"\\n\" + \"\\t\" ","lastModifiedDate":"2024-02-04"},{"lineNumber":133,"author":{"gitId":"LargeCrowd"},"content":" + \"[ \" + this.taskList.get(index) + \" ]\");","lastModifiedDate":"2024-02-04"},{"lineNumber":134,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.remove(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":135,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"There are \" + this.taskList.size() + \" tasks in your list.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":136,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":137,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":138,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":139,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":140,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":141,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":142,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":143,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":144,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":145,"author":{"gitId":"LargeCrowd"},"content":" * Returns task type","lastModifiedDate":"2024-02-04"},{"lineNumber":146,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":147,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":148,"author":{"gitId":"LargeCrowd"},"content":" * @return TaskType","lastModifiedDate":"2024-02-04"},{"lineNumber":149,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":150,"author":{"gitId":"LargeCrowd"},"content":" public TaskType getTaskType(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":151,"author":{"gitId":"LargeCrowd"},"content":" if (task.startsWith(\"todo\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":152,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.TODO;","lastModifiedDate":"2024-02-04"},{"lineNumber":153,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.startsWith(\"deadline\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":154,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.DEADLINE;","lastModifiedDate":"2024-02-04"},{"lineNumber":155,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.startsWith(\"event\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":156,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.EVENT;","lastModifiedDate":"2024-02-04"},{"lineNumber":157,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.equals(\"help\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":158,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.HELP;","lastModifiedDate":"2024-02-04"},{"lineNumber":159,"author":{"gitId":"LargeCrowd"},"content":" } else { // if (task.startsWith(\"delete\"))","lastModifiedDate":"2024-02-06"},{"lineNumber":160,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.DELETE;","lastModifiedDate":"2024-02-04"},{"lineNumber":161,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":162,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":163,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":164,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":165,"author":{"gitId":"LargeCrowd"},"content":" * Marks task as done","lastModifiedDate":"2024-02-04"},{"lineNumber":166,"author":{"gitId":"LargeCrowd"},"content":" * If task is already done, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":167,"author":{"gitId":"LargeCrowd"},"content":" * If task is undone, marks as done","lastModifiedDate":"2024-02-04"},{"lineNumber":168,"author":{"gitId":"LargeCrowd"},"content":" * If task does not exist, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":169,"author":{"gitId":"LargeCrowd"},"content":" * If input is not a number, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":170,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":171,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be marked as done","lastModifiedDate":"2024-02-04"},{"lineNumber":172,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":173,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":174,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":175,"author":{"gitId":"LargeCrowd"},"content":" public void markDone(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":176,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":177,"author":{"gitId":"LargeCrowd"},"content":" if (this.taskList.get(index).isDone()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":178,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"You completed this task already!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":179,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":180,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":181,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.get(index).markDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":182,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Good job completing the task!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":183,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":184,"author":{"gitId":"LargeCrowd"},"content":" printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":185,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":186,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":187,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":188,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":189,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":190,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":191,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":192,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":193,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":194,"author":{"gitId":"LargeCrowd"},"content":" * Marks task as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":195,"author":{"gitId":"LargeCrowd"},"content":" * If task is already undone, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":196,"author":{"gitId":"LargeCrowd"},"content":" * If task is done, marks as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":197,"author":{"gitId":"LargeCrowd"},"content":" * If task does not exist, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":198,"author":{"gitId":"LargeCrowd"},"content":" * If input is not a number, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":199,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":200,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be marked as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":201,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":202,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":203,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":204,"author":{"gitId":"LargeCrowd"},"content":" public void markUndone(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":205,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":206,"author":{"gitId":"LargeCrowd"},"content":" if (!this.taskList.get(index).isDone()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":207,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Oops! You still haven\u0027t done this task!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":208,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":209,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.get(index).markUndone();","lastModifiedDate":"2024-02-04"},{"lineNumber":210,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Better get to it soon!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":211,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":212,"author":{"gitId":"LargeCrowd"},"content":" printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":213,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":214,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":215,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":216,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":217,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":218,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":219,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":220,"author":{"gitId":"LargeCrowd"},"content":" } ","lastModifiedDate":"2024-02-04"},{"lineNumber":221,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":222,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":223,"author":{"gitId":"LargeCrowd"},"content":" * Prints taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":224,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":225,"author":{"gitId":"LargeCrowd"},"content":" public void printList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":226,"author":{"gitId":"LargeCrowd"},"content":" if (this.taskList.isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":227,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Your tasklist is empty\");","lastModifiedDate":"2024-02-04"},{"lineNumber":228,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":229,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Here is your to-do list:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":230,"author":{"gitId":"LargeCrowd"},"content":" this.taskIndex \u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":231,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":232,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + this.taskIndex + \". \" + task);","lastModifiedDate":"2024-02-04"},{"lineNumber":233,"author":{"gitId":"LargeCrowd"},"content":" this.taskIndex++;","lastModifiedDate":"2024-02-04"},{"lineNumber":234,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":235,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":236,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":237,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":238,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":238}},{"path":"src/main/java/duke/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":" * Todo class","lastModifiedDate":"2024-02-01"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"public class Todo extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Todo","lastModifiedDate":"2024-02-07"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-07"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" public Todo (String description) {","lastModifiedDate":"2024-02-01"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" return \"T\";","lastModifiedDate":"2024-02-01"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" return super.toString();","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"src/main/java/duke/Ui.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"public class Ui {","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" private static final String LINE \u003d \"____________________________________________________________\";","lastModifiedDate":"2024-02-07"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" private Scanner scanner;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" public Ui() {","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" this.scanner \u003d new Scanner(System.in);","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" * Prints the greeting message","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" public void showGreeting() {","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" showHelp();","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * Prints the exit message","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public void showGoodbye() {","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Bye. Hope to see you again soon!\");","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" * Handles user input","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" * @return String user input","lastModifiedDate":"2024-02-03"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" public String getUserInput() {","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Enter a task below: \");","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" return scanner.nextLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" * Close the scanner","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" public void closeScanner() {","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" scanner.close();","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" * Prints the line","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" public void printLine() {","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(LINE);","lastModifiedDate":"2024-02-07"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" * Prints list of available commands","lastModifiedDate":"2024-02-03"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" public void showHelp() {","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Help: \");","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" String[] instructions \u003d {","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" \"DISPLAY LIST: list\",","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" \"ADD TODO: todo \u003cTASK NAME\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" \"ADD DEADLINE: deadline \u003cTASK NAME\u003e /by \u003cDD/MM/YYYY\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" \"ADD EVENT: event \u003cTASK NAME\u003e /from \u003cDD/MM/YYYY\u003e /to \u003cDD/MM/YYYY\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" \"MARK DONE: mark done \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" \"MARK UNDONE: mark undone \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" \"DELETE TASK: delete \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" \"EXIT: bye\"","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" };","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" for (int i \u003d 0; i \u003c instructions.length; i++) {","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + (i + 1) + \". \" + instructions[i]);","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" * Invalid task index message","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" public void printInvalidTaskIndex() {","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Oops, that wasn\u0027t a valid task index :P\");","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":79}},{"path":"src/test/java/duke/DeadlineTest.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import org.junit.jupiter.api.Test;","lastModifiedDate":"2024-02-06"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import static org.junit.jupiter.api.Assertions.assertEquals;","lastModifiedDate":"2024-02-06"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-06"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"public class DeadlineTest {","lastModifiedDate":"2024-02-06"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Tests if getTaskType returns correct task type","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-06"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" @Test","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" public void test_getTaskType_task() {","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" TaskList taskListObj \u003d new TaskList(new Storage(taskList), taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.addTask(\"deadline deadline1 /by 2020-12-12\");","lastModifiedDate":"2024-02-06"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.getTaskType(\"deadline deadline1 /by 2020-12-12\");","lastModifiedDate":"2024-02-06"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" assertEquals(taskList.get(0).getTaskType(), \"D\");","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"src/test/java/duke/TodoTest.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import org.junit.jupiter.api.Test;","lastModifiedDate":"2024-02-06"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import static org.junit.jupiter.api.Assertions.assertTrue;","lastModifiedDate":"2024-02-06"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-06"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"public class TodoTest {","lastModifiedDate":"2024-02-06"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Tests if markDone marks task as done","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-06"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" @Test","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" public void test_markDone_taskUndone() {","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" TaskList taskListObj \u003d new TaskList(new Storage(taskList), taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.addTask(\"todo task1\");","lastModifiedDate":"2024-02-06"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-06"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.markDone(0);","lastModifiedDate":"2024-02-06"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" assertTrue(taskList.get(0).isDone());","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"tasklist/tasklist.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"D | not done | deadline1 (by: 12 Dec 2020)","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":1}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"todo Buy groceries","lastModifiedDate":"2024-01-28"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"deadline Submit report /by some-time-later","lastModifiedDate":"2024-02-01"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"event Team meeting /from abc /to xyz","lastModifiedDate":"2024-02-01"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"help","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"mark done 1","lastModifiedDate":"2024-01-28"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"mark undone 2","lastModifiedDate":"2024-01-28"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"delete 3","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"list","lastModifiedDate":"2024-01-28"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"bye","lastModifiedDate":"2024-01-28"}],"authorContributionMap":{"LargeCrowd":9}}] +[{"path":"src/main/java/duke/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.DateTimeException;","lastModifiedDate":"2024-02-02"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-02"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-02"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-02"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Deadline class handles the deadline tasks of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate byDate;","lastModifiedDate":"2024-02-02"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected String byString;","lastModifiedDate":"2024-02-02"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Deadline","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" * @param by","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @throws DateTimeException","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" this.byString \u003d by;","lastModifiedDate":"2024-02-02"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-02"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.byDate \u003d parseDate(by, DATE_FORMAT_1, DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the by string","lastModifiedDate":"2024-02-07"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" } catch (DateTimeException e) {","lastModifiedDate":"2024-02-02"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" throw new DateTimeException(\"Error parsing date in Deadline: \" + e.getMessage());","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-02"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" return \"D\";","lastModifiedDate":"2024-02-01"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" DateTimeFormatter displayFormatter \u003d DATE_FORMAT_4;","lastModifiedDate":"2024-02-07"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" return super.toString() + \" (by: \" + byDate.format(displayFormatter) + \")\";","lastModifiedDate":"2024-02-02"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":42}},{"path":"src/main/java/duke/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" * Main class","lastModifiedDate":"2024-02-01"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"public class Duke {","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private Storage storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" private TaskList tasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" private Parser parser;","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Duke","lastModifiedDate":"2024-02-07"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" public Duke() {","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" this.storage \u003d new Storage(taskList);","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" storage.loadTaskList();","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" this.tasks \u003d new TaskList(storage, taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" this.parser \u003d new Parser(tasks);","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" * Starts the program","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * @throws StringIndexOutOfBoundsException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void start() {","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" ui.showGreeting();","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" String input \u003d ui.getUserInput();","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" while (true) {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" if (!parser.executeUserInput(input)) {","lastModifiedDate":"2024-02-06"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" input \u003d ui.getUserInput();","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" ui.showGoodbye();","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" ui.closeScanner();","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" * Main method","lastModifiedDate":"2024-02-07"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" * @param args","lastModifiedDate":"2024-02-07"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-02-01"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" Duke mainApp \u003d new Duke();","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" mainApp.start();","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" } ","lastModifiedDate":"2024-02-01"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":60}},{"path":"src/main/java/duke/Events.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.DateTimeException;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Events class handles the events tasks of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Events extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate fromDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate toDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" protected String fromString;","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" protected String toString;","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Events","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" *","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * @param from","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * @param to","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @throws DateTimeException","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Events(String description, String from, String to) {","lastModifiedDate":"2024-02-01"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" this.fromString \u003d from;","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" this.toString \u003d to;","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" this.fromDate \u003d parseDate(from, DATE_FORMAT_1, DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the from string","lastModifiedDate":"2024-02-07"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" this.toDate \u003d parseDate( ","lastModifiedDate":"2024-02-07"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" to, DATE_FORMAT_1,DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the to string","lastModifiedDate":"2024-02-07"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" } catch (DateTimeException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" throw new DateTimeException(\"Error parsing date in Events: \" + e.getMessage());","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" return \"E\";","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" DateTimeFormatter displayFormatter \u003d DATE_FORMAT_4;","lastModifiedDate":"2024-02-07"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" return super.toString() + \" (from: \" + fromDate.format(displayFormatter) + \", to: \" ","lastModifiedDate":"2024-02-07"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" + toDate.format(displayFormatter) + \")\";","lastModifiedDate":"2024-02-07"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":50}},{"path":"src/main/java/duke/Parser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":" * Parser class deals with making sense of the user command","lastModifiedDate":"2024-02-07"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"public class Parser {","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private TaskList taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Parser ","lastModifiedDate":"2024-02-07"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" * @param taskList","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" public Parser(TaskList taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * Executes user input","lastModifiedDate":"2024-02-07"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" * @param input user input","lastModifiedDate":"2024-02-07"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" * @return boolean","lastModifiedDate":"2024-02-07"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" */ ","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" public boolean executeUserInput(String input) {","lastModifiedDate":"2024-02-06"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" if (input.equals(\"bye\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" return false;","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" if (input.equals(\"list\")) { // show list","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" taskList.printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"mark done\")) { // mark as done","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(input.substring(9).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" taskList.markDone(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"mark undone\")) { // mark as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(input.substring(11).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" taskList.markUndone(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"find\")) { // tasks that contain keyword","lastModifiedDate":"2024-02-07"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-07"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" String keyword \u003d input.substring(5).trim();","lastModifiedDate":"2024-02-07"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" taskList.findTasks(keyword);","lastModifiedDate":"2024-02-07"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" } catch (StringIndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-07"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidKeyword();","lastModifiedDate":"2024-02-07"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" } else { ","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" taskList.addTask(input);","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" return true;","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":59}},{"path":"src/main/java/duke/Storage.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.io.IOException;","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Files;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Path;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Paths;","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-07"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" * Storage class deals with loading tasks from the file and saving tasks in the file","lastModifiedDate":"2024-02-07"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":"public class Storage {","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" private static final String FOLDER_PATH \u003d \"./tasklist\";","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" private static final String TASKLIST_PATH \u003d FOLDER_PATH + \"/tasklist.txt\";","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" private Path taskListPath \u003d Paths.get(TASKLIST_PATH);","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" private Path folderPath \u003d Paths.get(FOLDER_PATH);","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Storage","lastModifiedDate":"2024-02-07"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" *","lastModifiedDate":"2024-02-07"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" * @param taskList","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" public Storage(ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" createTaskList();","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" * Loads taskList from file","lastModifiedDate":"2024-02-07"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" public void loadTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" // Clear existing tasks before loading","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.clear();","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" // Load tasks from file","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cString\u003e taskListFromFile \u003d new ArrayList\u003c\u003e(Files.readAllLines(taskListPath));","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" // For each task in the file, add it to the taskList","lastModifiedDate":"2024-02-03"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" for (String task : taskListFromFile) {","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" String[] taskParts \u003d task.split(\" \\\\| \", 3);","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" String taskType \u003d taskParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" String taskStatus \u003d taskParts[1];","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" String taskDescription \u003d taskParts[2];","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" switch (taskType) {","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" case \"T\":","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" Todo newTodo \u003d new Todo(taskDescription);","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" newTodo.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newTodo);","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" case \"D\":","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" String[] deadlineParts \u003d taskDescription.split(\" \\\\(by: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" String deadlineDescription \u003d deadlineParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" String deadlineByDateTime \u003d deadlineParts[1]","lastModifiedDate":"2024-02-07"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" .substring(0, deadlineParts[1].length() - 1);","lastModifiedDate":"2024-02-07"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" Deadline newDeadline \u003d new Deadline(deadlineDescription, deadlineByDateTime);","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" newDeadline.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newDeadline);","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" case \"E\":","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" String[] eventParts \u003d taskDescription.split(\" \\\\(from: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" String eventDescription \u003d eventParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" String eventAt \u003d eventParts[1].substring(0, eventParts[1].length() - 1);","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" String[] eventAtParts \u003d eventAt.split(\", to: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" String eventFrom \u003d eventAtParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" String eventTo \u003d eventAtParts[1];","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" Events newEvent \u003d new Events(eventDescription, eventFrom, eventTo);","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":" newEvent.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newEvent);","lastModifiedDate":"2024-02-03"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" default:","lastModifiedDate":"2024-02-03"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Unrecognized task type: \" + task);","lastModifiedDate":"2024-02-03"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" throw new IOException(\"Error loading data from file: unrecognized task type\");","lastModifiedDate":"2024-02-04"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error loading data from file: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":94,"author":{"gitId":"LargeCrowd"},"content":" e.printStackTrace();","lastModifiedDate":"2024-02-03"},{"lineNumber":95,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":96,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":97,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":98,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":99,"author":{"gitId":"LargeCrowd"},"content":" * Saves taskList to file","lastModifiedDate":"2024-02-07"},{"lineNumber":100,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":101,"author":{"gitId":"LargeCrowd"},"content":" public void saveTaskListToFile() {","lastModifiedDate":"2024-02-04"},{"lineNumber":102,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":103,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cString\u003e newTaskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-03"},{"lineNumber":104,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-03"},{"lineNumber":105,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-03"},{"lineNumber":106,"author":{"gitId":"LargeCrowd"},"content":" newTaskList.add(task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":107,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":108,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":109,"author":{"gitId":"LargeCrowd"},"content":" Files.write(taskListPath, newTaskList);","lastModifiedDate":"2024-02-03"},{"lineNumber":110,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":111,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error saving data to file: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":112,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":113,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":114,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":115,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":116,"author":{"gitId":"LargeCrowd"},"content":" * Creates taskList and tasklist.txt if they do not exist","lastModifiedDate":"2024-02-07"},{"lineNumber":117,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":118,"author":{"gitId":"LargeCrowd"},"content":" private void createTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":119,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":120,"author":{"gitId":"LargeCrowd"},"content":" if (Files.notExists(folderPath)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":121,"author":{"gitId":"LargeCrowd"},"content":" Files.createDirectories(folderPath);","lastModifiedDate":"2024-02-04"},{"lineNumber":122,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":123,"author":{"gitId":"LargeCrowd"},"content":" if (Files.notExists(taskListPath)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":124,"author":{"gitId":"LargeCrowd"},"content":" Files.createFile(taskListPath);","lastModifiedDate":"2024-02-04"},{"lineNumber":125,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":126,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":127,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error creating tasklist: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":129,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":130,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":130}},{"path":"src/main/java/duke/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.util.Locale;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Task class handles the tasks of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected String task;","lastModifiedDate":"2024-02-01"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-01"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_1 \u003d DateTimeFormatter.ofPattern(\"d/M/yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_2 \u003d DateTimeFormatter.ofPattern(\"yyyy-M-d\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_3 \u003d DateTimeFormatter.ofPattern(\"d-M-yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_4 \u003d DateTimeFormatter.ofPattern(\"d MMM yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Task","lastModifiedDate":"2024-02-01"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @param task","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Task(String task) {","lastModifiedDate":"2024-02-01"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.task \u003d task;","lastModifiedDate":"2024-02-01"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-01"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * Mark task as done","lastModifiedDate":"2024-02-01"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void markDone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d true;","lastModifiedDate":"2024-02-01"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" * Mark task as undone","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" public void markUndone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-01"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" * Check if task is done","lastModifiedDate":"2024-02-01"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-01"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" * @return boolean","lastModifiedDate":"2024-02-01"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" public boolean isDone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" return this.isDone;","lastModifiedDate":"2024-02-01"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" return \"\";","lastModifiedDate":"2024-02-01"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" public String getTaskStatus() {","lastModifiedDate":"2024-02-06"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" return this.isDone ? \"done\" : \"not done\";","lastModifiedDate":"2024-02-01"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" * Parse the date string and return a LocalDate object","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" * @param by","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" * @param formatters","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" * @return LocalDate","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" * @throws IllegalArgumentException","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" * @throws Exception","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" protected static LocalDate parseDate(String by, DateTimeFormatter... formatters) {","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" for (DateTimeFormatter formatter : formatters) {","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" return LocalDate.parse(by, formatter);","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" } catch (Exception e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" // Try the next format","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" // If none of the formats match, you may want to handle this case","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" throw new IllegalArgumentException(\"Date could not be parsed with any of the provided formats\");","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" return getTaskType() + \" | \" + getTaskStatus() + \" | \" + this.task;","lastModifiedDate":"2024-02-06"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" * TaskType enum","lastModifiedDate":"2024-02-01"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":"enum TaskType {","lastModifiedDate":"2024-02-01"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" TODO,","lastModifiedDate":"2024-02-01"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" DEADLINE,","lastModifiedDate":"2024-02-01"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" EVENT,","lastModifiedDate":"2024-02-01"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" HELP,","lastModifiedDate":"2024-02-01"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" DELETE","lastModifiedDate":"2024-02-07"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":93}},{"path":"src/main/java/duke/TaskList.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"/** ","lastModifiedDate":"2024-02-07"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" * TaskList class contains the task list","lastModifiedDate":"2024-02-07"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"public class TaskList {","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" private int taskIndex;","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" private Storage storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" public TaskList(Storage storage, ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" this.storage \u003d storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * Adds task to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public void addTask(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" TaskType taskType \u003d getTaskType(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" switch (taskType) {","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" case TODO:","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" addTodoTask(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" case DEADLINE:","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" addDeadline(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" case EVENT:","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" addEvent(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" case HELP:","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" ui.showHelp();","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" case DELETE:","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(task.substring(6).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" deleteTask(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Please enter a valid task index.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" default:","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Sorry, that\u0027s not a command :( Enter \u0027help\u0027 for instructions.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" * Adds todoTask to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" public void addTodoTask(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" String todoDescription \u003d task.substring(4).trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" if (todoDescription.isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Please enter a valid todo task.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" Todo newTodo \u003d new Todo (todoDescription);","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newTodo);","lastModifiedDate":"2024-02-04"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added todo: \" + todoDescription);","lastModifiedDate":"2024-02-04"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" * Adds deadline to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" public void addDeadline(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" String[] deadlineDescription \u003d task.substring(8).trim().split(\"/by\", 2);","lastModifiedDate":"2024-02-04"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" if (deadlineDescription.length !\u003d 2 || deadlineDescription[0].trim().isEmpty() ","lastModifiedDate":"2024-02-04"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" || deadlineDescription[1].trim().isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Enter \u0027deadline \u003ctask\u003e /by \u003cDEADLINE\u003e\u0027\");","lastModifiedDate":"2024-02-04"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" String description \u003d deadlineDescription[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" String by \u003d deadlineDescription[1].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" Deadline newDeadline \u003d new Deadline(description, by);","lastModifiedDate":"2024-02-04"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newDeadline);","lastModifiedDate":"2024-02-04"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added deadline: \" + newDeadline.toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":94,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":95,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":96,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":97,"author":{"gitId":"LargeCrowd"},"content":" * Adds eventTask to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":98,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":99,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":100,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":101,"author":{"gitId":"LargeCrowd"},"content":" public void addEvent(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":102,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":103,"author":{"gitId":"LargeCrowd"},"content":" String[] eventParts \u003d task.substring(6).trim().split(\"/from\");","lastModifiedDate":"2024-02-04"},{"lineNumber":104,"author":{"gitId":"LargeCrowd"},"content":" if (eventParts.length \u003d\u003d 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":105,"author":{"gitId":"LargeCrowd"},"content":" String[] durationParts \u003d eventParts[1].trim().split(\"/to\");","lastModifiedDate":"2024-02-04"},{"lineNumber":106,"author":{"gitId":"LargeCrowd"},"content":" if (durationParts.length \u003d\u003d 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":107,"author":{"gitId":"LargeCrowd"},"content":" String desc \u003d eventParts[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":108,"author":{"gitId":"LargeCrowd"},"content":" String from \u003d durationParts[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":109,"author":{"gitId":"LargeCrowd"},"content":" String to \u003d durationParts[1].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":110,"author":{"gitId":"LargeCrowd"},"content":" Events newEvent \u003d new Events(desc, from, to);","lastModifiedDate":"2024-02-04"},{"lineNumber":111,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newEvent);","lastModifiedDate":"2024-02-04"},{"lineNumber":112,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":113,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added event: \" + desc + \" (from: \" + from + \", to: \" + to + \")\");","lastModifiedDate":"2024-02-04"},{"lineNumber":114,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":115,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-03"},{"lineNumber":116,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":117,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input for event. \"","lastModifiedDate":"2024-02-07"},{"lineNumber":118,"author":{"gitId":"LargeCrowd"},"content":" + \"Please use the format: event \u003ctask\u003e /from \u003cstart time\u003e /to \u003cend time\u003e\");","lastModifiedDate":"2024-02-07"},{"lineNumber":119,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":120,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":121,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input for event. \"","lastModifiedDate":"2024-02-07"},{"lineNumber":122,"author":{"gitId":"LargeCrowd"},"content":" + \"Please use the format: event \u003ctask\u003e /from \u003cstart time\u003e /to \u003cend time\u003e\");","lastModifiedDate":"2024-02-07"},{"lineNumber":123,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":124,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":125,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":126,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":127,"author":{"gitId":"LargeCrowd"},"content":" * Deletes task from taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":129,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be deleted","lastModifiedDate":"2024-02-04"},{"lineNumber":130,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":131,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":132,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":133,"author":{"gitId":"LargeCrowd"},"content":" public void deleteTask(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":134,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":135,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Noted. I\u0027ve removed this task:\" + \"\\n\" + \"\\t\" ","lastModifiedDate":"2024-02-04"},{"lineNumber":136,"author":{"gitId":"LargeCrowd"},"content":" + \"[ \" + this.taskList.get(index) + \" ]\");","lastModifiedDate":"2024-02-04"},{"lineNumber":137,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.remove(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":138,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"There are \" + this.taskList.size() + \" tasks in your list.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":139,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":140,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":141,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":142,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":143,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":144,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":145,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":146,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":147,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":148,"author":{"gitId":"LargeCrowd"},"content":" * Returns task type","lastModifiedDate":"2024-02-04"},{"lineNumber":149,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":150,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":151,"author":{"gitId":"LargeCrowd"},"content":" * @return TaskType","lastModifiedDate":"2024-02-04"},{"lineNumber":152,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":153,"author":{"gitId":"LargeCrowd"},"content":" public TaskType getTaskType(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":154,"author":{"gitId":"LargeCrowd"},"content":" if (task.startsWith(\"todo\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":155,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.TODO;","lastModifiedDate":"2024-02-04"},{"lineNumber":156,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.startsWith(\"deadline\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":157,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.DEADLINE;","lastModifiedDate":"2024-02-04"},{"lineNumber":158,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.startsWith(\"event\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":159,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.EVENT;","lastModifiedDate":"2024-02-04"},{"lineNumber":160,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.equals(\"help\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":161,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.HELP;","lastModifiedDate":"2024-02-04"},{"lineNumber":162,"author":{"gitId":"LargeCrowd"},"content":" } else { // if (task.startsWith(\"delete\"))","lastModifiedDate":"2024-02-06"},{"lineNumber":163,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.DELETE;","lastModifiedDate":"2024-02-04"},{"lineNumber":164,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":165,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":166,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":167,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":168,"author":{"gitId":"LargeCrowd"},"content":" * Marks task as done","lastModifiedDate":"2024-02-04"},{"lineNumber":169,"author":{"gitId":"LargeCrowd"},"content":" * If task is already done, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":170,"author":{"gitId":"LargeCrowd"},"content":" * If task is undone, marks as done","lastModifiedDate":"2024-02-04"},{"lineNumber":171,"author":{"gitId":"LargeCrowd"},"content":" * If task does not exist, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":172,"author":{"gitId":"LargeCrowd"},"content":" * If input is not a number, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":173,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":174,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be marked as done","lastModifiedDate":"2024-02-04"},{"lineNumber":175,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":176,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":177,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":178,"author":{"gitId":"LargeCrowd"},"content":" public void markDone(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":179,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":180,"author":{"gitId":"LargeCrowd"},"content":" if (this.taskList.get(index).isDone()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":181,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"You completed this task already!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":182,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":183,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":184,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.get(index).markDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":185,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Good job completing the task!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":186,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":187,"author":{"gitId":"LargeCrowd"},"content":" printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":188,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":189,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":190,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":191,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":192,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":193,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":194,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":195,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":196,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":197,"author":{"gitId":"LargeCrowd"},"content":" * Marks task as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":198,"author":{"gitId":"LargeCrowd"},"content":" * If task is already undone, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":199,"author":{"gitId":"LargeCrowd"},"content":" * If task is done, marks as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":200,"author":{"gitId":"LargeCrowd"},"content":" * If task does not exist, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":201,"author":{"gitId":"LargeCrowd"},"content":" * If input is not a number, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":202,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":203,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be marked as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":204,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":205,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":206,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":207,"author":{"gitId":"LargeCrowd"},"content":" public void markUndone(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":208,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":209,"author":{"gitId":"LargeCrowd"},"content":" if (!this.taskList.get(index).isDone()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":210,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Oops! You still haven\u0027t done this task!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":211,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":212,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.get(index).markUndone();","lastModifiedDate":"2024-02-04"},{"lineNumber":213,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Better get to it soon!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":214,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":215,"author":{"gitId":"LargeCrowd"},"content":" printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":216,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":217,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":218,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":219,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":220,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":221,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":222,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":223,"author":{"gitId":"LargeCrowd"},"content":" } ","lastModifiedDate":"2024-02-04"},{"lineNumber":224,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":225,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":226,"author":{"gitId":"LargeCrowd"},"content":" * Find tasks that contain keyword","lastModifiedDate":"2024-02-07"},{"lineNumber":227,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":228,"author":{"gitId":"LargeCrowd"},"content":" public void findTasks(String keyword) {","lastModifiedDate":"2024-02-07"},{"lineNumber":229,"author":{"gitId":"LargeCrowd"},"content":" int count \u003d 0;","lastModifiedDate":"2024-02-07"},{"lineNumber":230,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-07"},{"lineNumber":231,"author":{"gitId":"LargeCrowd"},"content":" if (task.toString().contains(keyword)) {","lastModifiedDate":"2024-02-07"},{"lineNumber":232,"author":{"gitId":"LargeCrowd"},"content":" if (count \u003d\u003d 0) {","lastModifiedDate":"2024-02-07"},{"lineNumber":233,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Here are the matching tasks in your list:\");","lastModifiedDate":"2024-02-07"},{"lineNumber":234,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":235,"author":{"gitId":"LargeCrowd"},"content":" count++;","lastModifiedDate":"2024-02-07"},{"lineNumber":236,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + count + \". \" + task);","lastModifiedDate":"2024-02-07"},{"lineNumber":237,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":238,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":239,"author":{"gitId":"LargeCrowd"},"content":" if (count \u003d\u003d 0) {","lastModifiedDate":"2024-02-07"},{"lineNumber":240,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"No matching tasks found :(\");","lastModifiedDate":"2024-02-07"},{"lineNumber":241,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":242,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-07"},{"lineNumber":243,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":244,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":245,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":246,"author":{"gitId":"LargeCrowd"},"content":" * Prints taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":247,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":248,"author":{"gitId":"LargeCrowd"},"content":" public void printList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":249,"author":{"gitId":"LargeCrowd"},"content":" if (this.taskList.isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":250,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Your tasklist is empty\");","lastModifiedDate":"2024-02-04"},{"lineNumber":251,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":252,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Here is your to-do list:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":253,"author":{"gitId":"LargeCrowd"},"content":" this.taskIndex \u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":254,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":255,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + this.taskIndex + \". \" + task);","lastModifiedDate":"2024-02-04"},{"lineNumber":256,"author":{"gitId":"LargeCrowd"},"content":" this.taskIndex++;","lastModifiedDate":"2024-02-04"},{"lineNumber":257,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":258,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":259,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":260,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":261,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":261}},{"path":"src/main/java/duke/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":" * Todo class handles the todo tasks of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"public class Todo extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Todo","lastModifiedDate":"2024-02-07"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-07"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" public Todo (String description) {","lastModifiedDate":"2024-02-01"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" return \"T\";","lastModifiedDate":"2024-02-01"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" return super.toString();","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"src/main/java/duke/Ui.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-07"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" * Ui class handles the user interactions of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"public class Ui {","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" private static final String LINE \u003d \"____________________________________________________________\";","lastModifiedDate":"2024-02-07"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" private Scanner scanner;","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" public Ui() {","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" this.scanner \u003d new Scanner(System.in);","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * Prints the greeting message","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" public void showGreeting() {","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" showHelp();","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" * Prints the exit message","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" public void showGoodbye() {","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Bye. Hope to see you again soon!\");","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" * Handles user input","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" * @return String user input","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" public String getUserInput() {","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Enter a task below: \");","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" return scanner.nextLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" * Close the scanner","lastModifiedDate":"2024-02-03"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" public void closeScanner() {","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" scanner.close();","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" * Prints the line","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" public void printLine() {","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(LINE);","lastModifiedDate":"2024-02-07"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" * Prints list of available commands","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" public void showHelp() {","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Help: \");","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" String[] instructions \u003d {","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" \"DISPLAY LIST: list\",","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" \"ADD TODO: todo \u003cTASK NAME\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" \"ADD DEADLINE: deadline \u003cTASK NAME\u003e /by \u003cDD/MM/YYYY\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" \"ADD EVENT: event \u003cTASK NAME\u003e /from \u003cDD/MM/YYYY\u003e /to \u003cDD/MM/YYYY\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" \"MARK DONE: mark done \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" \"MARK UNDONE: mark undone \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" \"DELETE TASK: delete \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" \"EXIT: bye\"","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" };","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" for (int i \u003d 0; i \u003c instructions.length; i++) {","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + (i + 1) + \". \" + instructions[i]);","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" * Invalid task index message","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" public void printInvalidTaskIndex() {","lastModifiedDate":"2024-02-03"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Oops, that wasn\u0027t a valid task index :P\");","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" * Invalid keyword message","lastModifiedDate":"2024-02-07"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" public void printInvalidKeyword() {","lastModifiedDate":"2024-02-07"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"No tasks match that keyword :(\");","lastModifiedDate":"2024-02-07"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":90}},{"path":"src/test/java/duke/DeadlineTest.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import org.junit.jupiter.api.Test;","lastModifiedDate":"2024-02-06"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import static org.junit.jupiter.api.Assertions.assertEquals;","lastModifiedDate":"2024-02-06"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-06"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"public class DeadlineTest {","lastModifiedDate":"2024-02-06"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Tests if getTaskType returns correct task type","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-06"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" @Test","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" public void test_getTaskType_task() {","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" TaskList taskListObj \u003d new TaskList(new Storage(taskList), taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.addTask(\"deadline deadline1 /by 2020-12-12\");","lastModifiedDate":"2024-02-06"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.getTaskType(\"deadline deadline1 /by 2020-12-12\");","lastModifiedDate":"2024-02-06"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" assertEquals(taskList.get(0).getTaskType(), \"D\");","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"src/test/java/duke/TodoTest.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import org.junit.jupiter.api.Test;","lastModifiedDate":"2024-02-06"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import static org.junit.jupiter.api.Assertions.assertTrue;","lastModifiedDate":"2024-02-06"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-06"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"public class TodoTest {","lastModifiedDate":"2024-02-06"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Tests if markDone marks task as done","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-06"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" @Test","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" public void test_markDone_taskUndone() {","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" TaskList taskListObj \u003d new TaskList(new Storage(taskList), taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.addTask(\"todo task1\");","lastModifiedDate":"2024-02-06"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-06"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.markDone(0);","lastModifiedDate":"2024-02-06"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" assertTrue(taskList.get(0).isDone());","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"tasklist/tasklist.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"D | not done | deadline1 (by: 12 Dec 2020)","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"D | not done | deadline2 (by: 23 Mar 2030)","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"T | not done | newthing","lastModifiedDate":"2024-02-07"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"T | not done | thing2","lastModifiedDate":"2024-02-07"}],"authorContributionMap":{"LargeCrowd":4}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"todo Buy groceries","lastModifiedDate":"2024-01-28"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"deadline Submit report /by some-time-later","lastModifiedDate":"2024-02-01"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"event Team meeting /from abc /to xyz","lastModifiedDate":"2024-02-01"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"help","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"mark done 1","lastModifiedDate":"2024-01-28"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"mark undone 2","lastModifiedDate":"2024-01-28"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"delete 3","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"list","lastModifiedDate":"2024-01-28"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"bye","lastModifiedDate":"2024-01-28"}],"authorContributionMap":{"LargeCrowd":9}}] diff --git a/LargeCrowd_ip_master/commits.json b/LargeCrowd_ip_master/commits.json index 9f695c41..da48e161 100644 --- a/LargeCrowd_ip_master/commits.json +++ b/LargeCrowd_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"LargeCrowd":[{"date":"2024-01-24","commitResults":[{"hash":"49c29dfd840f28a7c585fafccf84d4c585513b90","isMergeCommit":false,"messageTitle":"Update Duke.java","messageBody":"Level-0 changes. Program exits after greeting with new name\n","tags":["level-0"],"fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":6}}},{"hash":"c5b339d785b2bd60106ead0793fd41f02ee29212","isMergeCommit":false,"messageTitle":"Update Duke.java","messageBody":"Level-1 changes. Takes an input then repeats it\n","tags":["level-1"],"fileTypesAndContributionMap":{"java":{"insertions":16,"deletions":6}}},{"hash":"70f4b4a57bc03080d7f74ec1fbd22587ae90010d","isMergeCommit":false,"messageTitle":"Level 2: Add, List","messageBody":"","tags":["level-2"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":2}}}]},{"date":"2024-01-25","commitResults":[{"hash":"9e13702b1e147029741876c1f3cb6dfbf2788a18","isMergeCommit":false,"messageTitle":"level 3.1","messageBody":"","tags":["level-3"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":1}}},{"hash":"0dc9957d7a630586fc880929a4c3d6d487ffa74f","isMergeCommit":false,"messageTitle":"level-3. Mark as Done","messageBody":"","tags":["level-3.2"],"fileTypesAndContributionMap":{"java":{"insertions":117,"deletions":36}}},{"hash":"dbf8aa393644779dded98e8ea0bd58cf2a64fb0e","isMergeCommit":false,"messageTitle":"changed \"item\" to \"task\"","messageBody":"","tags":["level-3.2.3"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":25}}},{"hash":"b9c353a36b895fee6e33f009a1b831a64c506ded","isMergeCommit":false,"messageTitle":"Starting level 4","messageBody":"","tags":["level-4"],"fileTypesAndContributionMap":{"java":{"insertions":42,"deletions":3}}}]},{"date":"2024-01-26","commitResults":[{"hash":"b23904d215ed8f89a707750fa2a5d39d1d31b326","isMergeCommit":false,"messageTitle":"debug level-3","messageBody":"","tags":["level-3.3"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":5}}},{"hash":"11ad844336850d14f62429eaa3d080342d2d7d67","isMergeCommit":false,"messageTitle":"added documentation and other small bug fixes","messageBody":"","tags":["level-3.3.1"],"fileTypesAndContributionMap":{"java":{"insertions":116,"deletions":36}}}]},{"date":"2024-01-27","commitResults":[{"hash":"dea5ab21319f3d168240ea0f706e374acce6c466","isMergeCommit":false,"messageTitle":"Level 4","messageBody":"","tags":["level-4.1"],"fileTypesAndContributionMap":{"java":{"insertions":103,"deletions":18}}}]},{"date":"2024-01-28","commitResults":[{"hash":"86c1154327fd326c76b2480e98d852bfb711b8ad","isMergeCommit":false,"messageTitle":"A-TextUiTesting","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":7,"deletions":0}}},{"hash":"0b62f5899c33e44fc6faf4fffb17be68a33d76c4","isMergeCommit":false,"messageTitle":"Level 5","messageBody":"","tags":["level-5"],"fileTypesAndContributionMap":{"java":{"insertions":10,"deletions":4}}},{"hash":"8a09305dca94dc77f9abdf88d3be49249ee9097b","isMergeCommit":false,"messageTitle":"Level 6: Delete, and did better organisation of task adding","messageBody":"","tags":["level-6"],"fileTypesAndContributionMap":{"java":{"insertions":79,"deletions":41}}},{"hash":"f6ed6d5d20397dd850ea9ec4bea01927dd3c8b62","isMergeCommit":false,"messageTitle":"A-Enums","messageBody":"","tags":["A-Enums"],"fileTypesAndContributionMap":{"java":{"insertions":73,"deletions":18}}}]},{"date":"2024-01-29","commitResults":[{"hash":"3bea4090f6e51587351549c1b5d1d95cf953884d","isMergeCommit":false,"messageTitle":"Edit documentation \u0026 styling","messageBody":"","tags":["A-Enums-1"],"fileTypesAndContributionMap":{"java":{"insertions":75,"deletions":99}}}]},{"date":"2024-01-30","commitResults":[{"hash":"fecfe9263e9deb5a640acb38a0406e2262e27223","isMergeCommit":false,"messageTitle":"Start level 7","messageBody":"","tags":["level-7"],"fileTypesAndContributionMap":{"java":{"insertions":77,"deletions":0}}}]},{"date":"2024-01-31","commitResults":[{"hash":"fcb55b1d324f63e0f98c76824d3afbe5c146794a","isMergeCommit":false,"messageTitle":"Reorganise and restart level 7","messageBody":"","tags":["level-7.1"],"fileTypesAndContributionMap":{"java":{"insertions":26,"deletions":68}}},{"hash":"ad060a44bdc740665f4bc06a9edd1cd4c03bc013","isMergeCommit":false,"messageTitle":"Create tasklist.txt","messageBody":"","tags":["level-7.1.1"],"fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":0},"java":{"insertions":8,"deletions":5}}},{"hash":"c733256816719c5a1a6abeccee493058242a76fb","isMergeCommit":false,"messageTitle":"Add ability to save list, but doesnt load data.","messageBody":"","tags":["level-7.2"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":107,"deletions":44}}},{"hash":"787789ea53788aeeccdb0dabd671dda6edf346a2","isMergeCommit":false,"messageTitle":"Need to fix tasklist display.","messageBody":"","tags":["level-7.2.1"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":3},"java":{"insertions":60,"deletions":28}}},{"hash":"5ef31e7fa4425364539b0db51c954eae9ad03c86","isMergeCommit":false,"messageTitle":"Work on loading tasks.","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":2},"java":{"insertions":7,"deletions":4}}},{"hash":"e65dbf65f68d319fac74a39df2a06ef4bfed3876","isMergeCommit":false,"messageTitle":"Test branch-level-7 pushing","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":8,"deletions":0}}},{"hash":"0fb93d29d597fe6de3486edfb392e4ea5ec57e48","isMergeCommit":false,"messageTitle":"Test branch-level-7 pushing","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":183,"deletions":55}}},{"hash":"3923d96c97d94067355508eedaa5285d06669024","isMergeCommit":false,"messageTitle":"Complete level 7","messageBody":"","tags":["level-7.3"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":21,"deletions":8}}}]},{"date":"2024-02-01","commitResults":[{"hash":"564f5179943ecab1a1ab0e6d69a4ac9ca0bbd52e","isMergeCommit":false,"messageTitle":"Small changes.","messageBody":"","tags":["level-7.3.1"],"fileTypesAndContributionMap":{"txt":{"insertions":4,"deletions":4},"java":{"insertions":4,"deletions":2}}},{"hash":"2800ecfcd568f2c45cc7dc9015e9692a615e52dc","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["level-7.4"],"fileTypesAndContributionMap":{}},{"hash":"87ac477211dbb0ac40c22631d1fa9c93e770a509","isMergeCommit":false,"messageTitle":"Small if logic change","messageBody":"","tags":["level-7.4.1"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":5}}},{"hash":"d38f4f89b87e683a27b390220d1aa453ea44a191","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["level-7.4.2"],"fileTypesAndContributionMap":{}},{"hash":"c4bd5843ffa8aa640cb01a5c1520e6d9b8044d07","isMergeCommit":false,"messageTitle":"Better encapsulation and abstraction.","messageBody":"","tags":["level-8"],"fileTypesAndContributionMap":{"java":{"insertions":627,"deletions":566}}},{"hash":"6a2ed1e0bfae8be022a77c575d1a713d3d6a1bd3","isMergeCommit":false,"messageTitle":"Reset level 8","messageBody":"","tags":["level-8.1"],"fileTypesAndContributionMap":{"java":{"insertions":554,"deletions":547}}}]},{"date":"2024-02-02","commitResults":[{"hash":"eba55d2a233c526626621c6e246098eb39e6fd8d","isMergeCommit":false,"messageTitle":"Reset level 8-2","messageBody":"","tags":["level-8.1.1"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":10}}},{"hash":"4beaa4e8e99c63767b1abc246ed6c9ff2e9fc43f","isMergeCommit":false,"messageTitle":"Add date formatting to Deadline","messageBody":"Not yet added to Events. Deadline accepts 4 formats of dates and displays as \"d MMM yyyy\"\n","tags":["level-8.2"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":54,"deletions":19}}}]},{"date":"2024-02-03","commitResults":[{"hash":"b4abb14f0736d46f8496f48c5c28b5bc6e536b2b","isMergeCommit":false,"messageTitle":"Move date parsing logic to Task class","messageBody":"","tags":["level-8.3"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":2},"java":{"insertions":74,"deletions":78}}},{"hash":"a1dfcb1ab211642a1ae8da5467ed4c1d2d5c61fb","isMergeCommit":false,"messageTitle":"Add Ui class. Work on Storage Class","messageBody":"","tags":["level-8.9"],"fileTypesAndContributionMap":{"java":{"insertions":325,"deletions":171}}}]},{"date":"2024-02-04","commitResults":[{"hash":"284848c06e6abb640399907b40aa08109748d180","isMergeCommit":false,"messageTitle":"Work on the new classes.","messageBody":"","tags":["level-8.9.1"],"fileTypesAndContributionMap":{"java":{"insertions":759,"deletions":482}}},{"hash":"3f7e5393eb0f8fc8c2398d849da772a5f8a64927","isMergeCommit":false,"messageTitle":"Complete MoreOOP","messageBody":"","tags":["A-MoreOOPs","A-MoreOOP"],"fileTypesAndContributionMap":{"java":{"insertions":45,"deletions":421}}},{"hash":"ddfbec7607f0833b1f037bc2c14343d635db37c3","isMergeCommit":false,"messageTitle":"Divide classes into packages.","messageBody":"","tags":["A-Packages-1.1"],"fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":4}}},{"hash":"4a22ec75c6103248a502cf97305715b2b1414bb7","isMergeCommit":true,"messageTitle":"Merge pull request #1 from LargeCrowd/A-Packages","messageBody":"Divide classes into packages.","tags":["A-Packages"],"fileTypesAndContributionMap":{}},{"hash":"21a49802136a30836a5f1545ea46156b0026401a","isMergeCommit":true,"messageTitle":"Merge remote-tracking branch \u0027upstream/add-gradle-support\u0027","messageBody":"","tags":["A-Gradle"],"fileTypesAndContributionMap":{}}]},{"date":"2024-02-06","commitResults":[{"hash":"41fad8ac49df61000694c20d7fe5473a8b519834","isMergeCommit":false,"messageTitle":"Debug Storage.","messageBody":"Incomplete\n","tags":["A-JUnit"],"fileTypesAndContributionMap":{"java":{"insertions":23,"deletions":6}}},{"hash":"24d5183bd7e574272299e051e2d808af0a935bb6","isMergeCommit":false,"messageTitle":"Update storage logic.","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":3},"java":{"insertions":6,"deletions":8}}},{"hash":"f3537197a1efbcb637c278454116026b183b75b7","isMergeCommit":false,"messageTitle":"Fix issues based on PR.","messageBody":"Renamed the taskType() methods to getTaskType() to follow the coding standard. Renamed parseInput() in Parser.java to executeUserInput() to show better description. Reformatted the switch/case block to follow standard\n","tags":["PR-1"],"fileTypesAndContributionMap":{"java":{"insertions":47,"deletions":49}}},{"hash":"1e24e8d6ead0094004c7980f76bfe6c475537d68","isMergeCommit":false,"messageTitle":"Add JUnit for deadline and todo classes.","messageBody":"","tags":["A-Jar","A-JUnit-1"],"fileTypesAndContributionMap":{"txt":{"insertions":1,"deletions":0},"java":{"insertions":46,"deletions":17}}}]},{"date":"2024-02-07","commitResults":[{"hash":"15061573183f0b2ba48548b0e807ce774441b4c9","isMergeCommit":false,"messageTitle":"Add javadocs.","messageBody":"","tags":["A-JavaDoc"],"fileTypesAndContributionMap":{"java":{"insertions":41,"deletions":19}}},{"hash":"03f2d08bb426d36611f212c1b8ceca4f40dc858a","isMergeCommit":false,"messageTitle":"Follow coding conventions.","messageBody":"","tags":["A-CodingStandard"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":17}}},{"hash":"0d01e56e05b9504cc09b212c197e9b9bb9e89763","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-CodingStandard\u0027","messageBody":"","fileTypesAndContributionMap":{}}]}]},"authorFileTypeContributionMap":{"LargeCrowd":{"java":810,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":10}},"authorContributionVariance":{"LargeCrowd":355803.9},"authorDisplayNameMap":{"LargeCrowd":"CS2103T-T11-2 TIMO..SONG"}} +{"authorDailyContributionsMap":{"LargeCrowd":[{"date":"2024-01-24","commitResults":[{"hash":"49c29dfd840f28a7c585fafccf84d4c585513b90","isMergeCommit":false,"messageTitle":"Update Duke.java","messageBody":"Level-0 changes. Program exits after greeting with new name\n","tags":["level-0"],"fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":6}}},{"hash":"c5b339d785b2bd60106ead0793fd41f02ee29212","isMergeCommit":false,"messageTitle":"Update Duke.java","messageBody":"Level-1 changes. Takes an input then repeats it\n","tags":["level-1"],"fileTypesAndContributionMap":{"java":{"insertions":16,"deletions":6}}},{"hash":"70f4b4a57bc03080d7f74ec1fbd22587ae90010d","isMergeCommit":false,"messageTitle":"Level 2: Add, List","messageBody":"","tags":["level-2"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":2}}}]},{"date":"2024-01-25","commitResults":[{"hash":"9e13702b1e147029741876c1f3cb6dfbf2788a18","isMergeCommit":false,"messageTitle":"level 3.1","messageBody":"","tags":["level-3"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":1}}},{"hash":"0dc9957d7a630586fc880929a4c3d6d487ffa74f","isMergeCommit":false,"messageTitle":"level-3. Mark as Done","messageBody":"","tags":["level-3.2"],"fileTypesAndContributionMap":{"java":{"insertions":117,"deletions":36}}},{"hash":"dbf8aa393644779dded98e8ea0bd58cf2a64fb0e","isMergeCommit":false,"messageTitle":"changed \"item\" to \"task\"","messageBody":"","tags":["level-3.2.3"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":25}}},{"hash":"b9c353a36b895fee6e33f009a1b831a64c506ded","isMergeCommit":false,"messageTitle":"Starting level 4","messageBody":"","tags":["level-4"],"fileTypesAndContributionMap":{"java":{"insertions":42,"deletions":3}}}]},{"date":"2024-01-26","commitResults":[{"hash":"b23904d215ed8f89a707750fa2a5d39d1d31b326","isMergeCommit":false,"messageTitle":"debug level-3","messageBody":"","tags":["level-3.3"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":5}}},{"hash":"11ad844336850d14f62429eaa3d080342d2d7d67","isMergeCommit":false,"messageTitle":"added documentation and other small bug fixes","messageBody":"","tags":["level-3.3.1"],"fileTypesAndContributionMap":{"java":{"insertions":116,"deletions":36}}}]},{"date":"2024-01-27","commitResults":[{"hash":"dea5ab21319f3d168240ea0f706e374acce6c466","isMergeCommit":false,"messageTitle":"Level 4","messageBody":"","tags":["level-4.1"],"fileTypesAndContributionMap":{"java":{"insertions":103,"deletions":18}}}]},{"date":"2024-01-28","commitResults":[{"hash":"86c1154327fd326c76b2480e98d852bfb711b8ad","isMergeCommit":false,"messageTitle":"A-TextUiTesting","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":7,"deletions":0}}},{"hash":"0b62f5899c33e44fc6faf4fffb17be68a33d76c4","isMergeCommit":false,"messageTitle":"Level 5","messageBody":"","tags":["level-5"],"fileTypesAndContributionMap":{"java":{"insertions":10,"deletions":4}}},{"hash":"8a09305dca94dc77f9abdf88d3be49249ee9097b","isMergeCommit":false,"messageTitle":"Level 6: Delete, and did better organisation of task adding","messageBody":"","tags":["level-6"],"fileTypesAndContributionMap":{"java":{"insertions":79,"deletions":41}}},{"hash":"f6ed6d5d20397dd850ea9ec4bea01927dd3c8b62","isMergeCommit":false,"messageTitle":"A-Enums","messageBody":"","tags":["A-Enums"],"fileTypesAndContributionMap":{"java":{"insertions":73,"deletions":18}}}]},{"date":"2024-01-29","commitResults":[{"hash":"3bea4090f6e51587351549c1b5d1d95cf953884d","isMergeCommit":false,"messageTitle":"Edit documentation \u0026 styling","messageBody":"","tags":["A-Enums-1"],"fileTypesAndContributionMap":{"java":{"insertions":75,"deletions":99}}}]},{"date":"2024-01-30","commitResults":[{"hash":"fecfe9263e9deb5a640acb38a0406e2262e27223","isMergeCommit":false,"messageTitle":"Start level 7","messageBody":"","tags":["level-7"],"fileTypesAndContributionMap":{"java":{"insertions":77,"deletions":0}}}]},{"date":"2024-01-31","commitResults":[{"hash":"fcb55b1d324f63e0f98c76824d3afbe5c146794a","isMergeCommit":false,"messageTitle":"Reorganise and restart level 7","messageBody":"","tags":["level-7.1"],"fileTypesAndContributionMap":{"java":{"insertions":26,"deletions":68}}},{"hash":"ad060a44bdc740665f4bc06a9edd1cd4c03bc013","isMergeCommit":false,"messageTitle":"Create tasklist.txt","messageBody":"","tags":["level-7.1.1"],"fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":0},"java":{"insertions":8,"deletions":5}}},{"hash":"c733256816719c5a1a6abeccee493058242a76fb","isMergeCommit":false,"messageTitle":"Add ability to save list, but doesnt load data.","messageBody":"","tags":["level-7.2"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":107,"deletions":44}}},{"hash":"787789ea53788aeeccdb0dabd671dda6edf346a2","isMergeCommit":false,"messageTitle":"Need to fix tasklist display.","messageBody":"","tags":["level-7.2.1"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":3},"java":{"insertions":60,"deletions":28}}},{"hash":"5ef31e7fa4425364539b0db51c954eae9ad03c86","isMergeCommit":false,"messageTitle":"Work on loading tasks.","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":2},"java":{"insertions":7,"deletions":4}}},{"hash":"e65dbf65f68d319fac74a39df2a06ef4bfed3876","isMergeCommit":false,"messageTitle":"Test branch-level-7 pushing","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":8,"deletions":0}}},{"hash":"0fb93d29d597fe6de3486edfb392e4ea5ec57e48","isMergeCommit":false,"messageTitle":"Test branch-level-7 pushing","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":183,"deletions":55}}},{"hash":"3923d96c97d94067355508eedaa5285d06669024","isMergeCommit":false,"messageTitle":"Complete level 7","messageBody":"","tags":["level-7.3"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":21,"deletions":8}}}]},{"date":"2024-02-01","commitResults":[{"hash":"564f5179943ecab1a1ab0e6d69a4ac9ca0bbd52e","isMergeCommit":false,"messageTitle":"Small changes.","messageBody":"","tags":["level-7.3.1"],"fileTypesAndContributionMap":{"txt":{"insertions":4,"deletions":4},"java":{"insertions":4,"deletions":2}}},{"hash":"2800ecfcd568f2c45cc7dc9015e9692a615e52dc","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["level-7.4"],"fileTypesAndContributionMap":{}},{"hash":"87ac477211dbb0ac40c22631d1fa9c93e770a509","isMergeCommit":false,"messageTitle":"Small if logic change","messageBody":"","tags":["level-7.4.1"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":5}}},{"hash":"d38f4f89b87e683a27b390220d1aa453ea44a191","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["level-7.4.2"],"fileTypesAndContributionMap":{}},{"hash":"c4bd5843ffa8aa640cb01a5c1520e6d9b8044d07","isMergeCommit":false,"messageTitle":"Better encapsulation and abstraction.","messageBody":"","tags":["level-8"],"fileTypesAndContributionMap":{"java":{"insertions":627,"deletions":566}}},{"hash":"6a2ed1e0bfae8be022a77c575d1a713d3d6a1bd3","isMergeCommit":false,"messageTitle":"Reset level 8","messageBody":"","tags":["level-8.1"],"fileTypesAndContributionMap":{"java":{"insertions":554,"deletions":547}}}]},{"date":"2024-02-02","commitResults":[{"hash":"eba55d2a233c526626621c6e246098eb39e6fd8d","isMergeCommit":false,"messageTitle":"Reset level 8-2","messageBody":"","tags":["level-8.1.1"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":10}}},{"hash":"4beaa4e8e99c63767b1abc246ed6c9ff2e9fc43f","isMergeCommit":false,"messageTitle":"Add date formatting to Deadline","messageBody":"Not yet added to Events. Deadline accepts 4 formats of dates and displays as \"d MMM yyyy\"\n","tags":["level-8.2"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":54,"deletions":19}}}]},{"date":"2024-02-03","commitResults":[{"hash":"b4abb14f0736d46f8496f48c5c28b5bc6e536b2b","isMergeCommit":false,"messageTitle":"Move date parsing logic to Task class","messageBody":"","tags":["level-8.3"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":2},"java":{"insertions":74,"deletions":78}}},{"hash":"a1dfcb1ab211642a1ae8da5467ed4c1d2d5c61fb","isMergeCommit":false,"messageTitle":"Add Ui class. Work on Storage Class","messageBody":"","tags":["level-8.9"],"fileTypesAndContributionMap":{"java":{"insertions":325,"deletions":171}}}]},{"date":"2024-02-04","commitResults":[{"hash":"284848c06e6abb640399907b40aa08109748d180","isMergeCommit":false,"messageTitle":"Work on the new classes.","messageBody":"","tags":["level-8.9.1"],"fileTypesAndContributionMap":{"java":{"insertions":759,"deletions":482}}},{"hash":"3f7e5393eb0f8fc8c2398d849da772a5f8a64927","isMergeCommit":false,"messageTitle":"Complete MoreOOP","messageBody":"","tags":["A-MoreOOPs","A-MoreOOP"],"fileTypesAndContributionMap":{"java":{"insertions":45,"deletions":421}}},{"hash":"ddfbec7607f0833b1f037bc2c14343d635db37c3","isMergeCommit":false,"messageTitle":"Divide classes into packages.","messageBody":"","tags":["A-Packages-1.1"],"fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":4}}},{"hash":"4a22ec75c6103248a502cf97305715b2b1414bb7","isMergeCommit":true,"messageTitle":"Merge pull request #1 from LargeCrowd/A-Packages","messageBody":"Divide classes into packages.","tags":["A-Packages"],"fileTypesAndContributionMap":{}},{"hash":"21a49802136a30836a5f1545ea46156b0026401a","isMergeCommit":true,"messageTitle":"Merge remote-tracking branch \u0027upstream/add-gradle-support\u0027","messageBody":"","tags":["A-Gradle"],"fileTypesAndContributionMap":{}}]},{"date":"2024-02-06","commitResults":[{"hash":"41fad8ac49df61000694c20d7fe5473a8b519834","isMergeCommit":false,"messageTitle":"Debug Storage.","messageBody":"Incomplete\n","tags":["A-JUnit"],"fileTypesAndContributionMap":{"java":{"insertions":23,"deletions":6}}},{"hash":"24d5183bd7e574272299e051e2d808af0a935bb6","isMergeCommit":false,"messageTitle":"Update storage logic.","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":3},"java":{"insertions":6,"deletions":8}}},{"hash":"f3537197a1efbcb637c278454116026b183b75b7","isMergeCommit":false,"messageTitle":"Fix issues based on PR.","messageBody":"Renamed the taskType() methods to getTaskType() to follow the coding standard. Renamed parseInput() in Parser.java to executeUserInput() to show better description. Reformatted the switch/case block to follow standard\n","tags":["PR-1"],"fileTypesAndContributionMap":{"java":{"insertions":47,"deletions":49}}},{"hash":"1e24e8d6ead0094004c7980f76bfe6c475537d68","isMergeCommit":false,"messageTitle":"Add JUnit for deadline and todo classes.","messageBody":"","tags":["A-Jar","A-JUnit-1"],"fileTypesAndContributionMap":{"txt":{"insertions":1,"deletions":0},"java":{"insertions":46,"deletions":17}}}]},{"date":"2024-02-07","commitResults":[{"hash":"15061573183f0b2ba48548b0e807ce774441b4c9","isMergeCommit":false,"messageTitle":"Add javadocs.","messageBody":"","tags":["A-JavaDoc"],"fileTypesAndContributionMap":{"java":{"insertions":41,"deletions":19}}},{"hash":"03f2d08bb426d36611f212c1b8ceca4f40dc858a","isMergeCommit":false,"messageTitle":"Follow coding conventions.","messageBody":"","tags":["A-CodingStandard"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":17}}},{"hash":"0d01e56e05b9504cc09b212c197e9b9bb9e89763","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-CodingStandard\u0027","messageBody":"","fileTypesAndContributionMap":{}},{"hash":"913d182ed111063b5ad7c7bc046cf7e4a2de6512","isMergeCommit":false,"messageTitle":"Add ability to find by keyword.","messageBody":"Includes minor javadoc edits\n","tags":["level-9"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":50,"deletions":6}}}]}]},"authorFileTypeContributionMap":{"LargeCrowd":{"java":854,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":13}},"authorContributionVariance":{"LargeCrowd":354553.28},"authorDisplayNameMap":{"LargeCrowd":"CS2103T-T11-2 TIMO..SONG"}} diff --git a/archive.zip b/archive.zip index 514c5c6e..ba838c32 100644 Binary files a/archive.zip and b/archive.zip differ diff --git a/reposense-logs/reposense.log.0 b/reposense-logs/reposense.log.0 index 4db0a542..a99b3b46 100644 --- a/reposense-logs/reposense.log.0 +++ b/reposense-logs/reposense.log.0 @@ -1,30 +1,30 @@ -Feb 07, 2024 1:15:41 AM reposense.system.LogsManager addFileHandler +Feb 07, 2024 2:39:07 AM reposense.system.LogsManager addFileHandler INFO: Log temp folder has been successfully created -Feb 07, 2024 1:15:42 AM reposense.parser.CsvParser validateHeader +Feb 07, 2024 2:39:07 AM reposense.parser.CsvParser validateHeader INFO: Parsed header of CSV file, repo-config.csv, and recognized columns: Ignore Standalone Config, Repository's Location, Branch, Shallow Cloning, File formats, Ignore Glob List, Ignore Authors List, Find Previous Authors, Ignore Commits List -Feb 07, 2024 1:15:43 AM reposense.parser.CsvParser validateHeader +Feb 07, 2024 2:39:08 AM reposense.parser.CsvParser validateHeader INFO: Parsed header of CSV file, author-config.csv, and recognized columns: Author's Emails, Repository's Location, Author's GitHub ID, Branch, Author's Display Name, Ignore Glob List, Author's Git Author Name -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:08 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias amanzainal found. The alias will belong to the last author - amanzainal -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:08 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias shuyuan found. The alias will belong to the last author - legionlegion -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias alphajae11 found. The alias will belong to the last author - alphajae11 -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias jayne1010 found. The alias will belong to the last author - Jayne1010 -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias miffi found. The alias will belong to the last author - miffi -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias amanzainal found. The alias will belong to the last author - amanzainal -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias shuyuan found. The alias will belong to the last author - legionlegion -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias alphajae11 found. The alias will belong to the last author - alphajae11 -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias jayne1010 found. The alias will belong to the last author - Jayne1010 -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias miffi found. The alias will belong to the last author - miffi -Feb 07, 2024 1:15:43 AM reposense.git.GitConfig getGlobalGitLfsConfig +Feb 07, 2024 2:39:09 AM reposense.git.GitConfig getGlobalGitLfsConfig WARNING: Could not get global git lfs config java.lang.RuntimeException: reposense.system.CommandRunnerProcessException: Error returned from command git config --global --list on path . : fatal: unable to read config file '/home/runner/.gitconfig': No such file or directory @@ -40,907 +40,667 @@ fatal: unable to read config file '/home/runner/.gitconfig': No such file or dir at reposense.system.CommandRunner.runCommand(CommandRunner.java:21) ... 3 more -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/eliotlee68/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/fy17ohhh/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chuahjiajie/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Austintjh19/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chuahjiajie/ip.git... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/fy17ohhh/ip.git... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/eliotlee68/ip.git to complete... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chuahjiajie/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/fy17ohhh/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Austintjh19/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/eliotlee68/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/fy17ohhh/ip.git to complete... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/chuahjiajie/ip.git completed! -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/fy17ohhh/ip.git completed! +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/linnn-7/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [1/430] Analyzing https://github.com/chuahjiajie/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/linnn-7/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chuahjiajie/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chuahjiajie/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Austintjh19/ip.git completed! -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dedsecrattle/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [2/430] Analyzing https://github.com/Austintjh19/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [1/430] Analyzing https://github.com/chuahjiajie/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Austintjh19/ip.git completed! +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dedsecrattle/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/fy17ohhh/ip.git completed! -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Austintjh19/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Austintjh19/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [2/430] Analyzing https://github.com/fy17ohhh/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gavingoh99/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [3/430] Analyzing https://github.com/fy17ohhh/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [3/430] Analyzing https://github.com/Austintjh19/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/gavingoh99/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chuahjiajie/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chuahjiajie/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/fy17ohhh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/fy17ohhh/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chuahjiajie/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/eliotlee68/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Austintjh19/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Austintjh19/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/linnn-7/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dedsecrattle/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chuahjiajie/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/eliotlee68/ip.git completed! +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/whitesnowx/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [4/430] Analyzing https://github.com/eliotlee68/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gavin331/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/gavingoh99/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/whitesnowx/ip.git to complete... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gavin331/ip.git... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SherisseTJW/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tahnya/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chuahjiajie/ip.git (master) completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gavin331/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [5/430] Analyzing https://github.com/dedsecrattle/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/whitesnowx/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [4/430] Analyzing https://github.com/linnn-7/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tahnya/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SherisseTJW/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dedsecrattle/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dedsecrattle/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/eliotlee68/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/eliotlee68/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gavin331/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yongkotaro/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yongkotaro/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gavin331/ip.git to complete... +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/linnn-7/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/linnn-7/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chuahjiajie/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chuahjiajie/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/whitesnowx/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/fy17ohhh/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/E0735389/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tahnya/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chuahjiajie/ip.git (master) completed! +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [5/430] Analyzing https://github.com/dedsecrattle/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SherisseTJW/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/E0735389/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tahnya/ip.git completed! +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yongkotaro/ip.git... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/E0735389/ip.git... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/beefsausagee/ip.git... -Feb 07, 2024 1:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/fy17ohhh/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dedsecrattle/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dedsecrattle/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gavin331/ip.git completed! +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/beefsausagee/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/E0735389/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yongkotaro/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/c-wenlong/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/c-wenlong/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/fy17ohhh/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/fy17ohhh/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/fy17ohhh/ip.git (master) completed! -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [6/430] Analyzing https://github.com/linnn-7/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/linnn-7/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/linnn-7/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dedsecrattle/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dedsecrattle/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dedsecrattle/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yongkotaro/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [7/430] Analyzing https://github.com/gavingoh99/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChuaZenKhoon/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChuaZenKhoon/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gavingoh99/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gavingoh99/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Austintjh19/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Austintjh19/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [6/430] Analyzing https://github.com/eliotlee68/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/beefsausagee/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/E0735389/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/c-wenlong/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Austintjh19/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [8/430] Analyzing https://github.com/gavin331/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChuaZenKhoon/ip.git... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ziyi22/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gauravuj/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ziyi22/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/c-wenlong/ip.git completed! +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChuaZenKhoon/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gauravuj/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/marclamp/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/marclamp/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gauravuj/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ziyi22/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gavin331/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gavin331/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/eliotlee68/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/eliotlee68/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/eliotlee68/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [9/430] Analyzing https://github.com/whitesnowx/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChuaZenKhoon/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/eliotlee68/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/eliotlee68/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ziyi22/ip.git completed! +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LifHoshi/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LifHoshi/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/whitesnowx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/whitesnowx/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gavingoh99/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/linnn-7/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gavingoh99/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/marclamp/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/gauravuj/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/linnn-7/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gavingoh99/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/linnn-7/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [10/430] Analyzing https://github.com/SherisseTJW/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ziyi22/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [11/430] Analyzing https://github.com/tahnya/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChuaZenKhoon/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/erv-teo/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/PyromancerBoom/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/marclamp/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/erv-teo/ip.git to complete... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/javierng2knus/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/PyromancerBoom/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gavin331/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SherisseTJW/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SherisseTJW/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/erv-teo/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/javierng2knus/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/whitesnowx/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tahnya/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tahnya/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gavin331/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gavin331/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [12/430] Analyzing https://github.com/yongkotaro/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/whitesnowx/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/whitesnowx/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [13/430] Analyzing https://github.com/beefsausagee/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yongkotaro/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yongkotaro/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/beefsausagee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/beefsausagee/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dedsecrattle/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dedsecrattle/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Austintjh19/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/linnn-7/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dedsecrattle/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [7/430] Analyzing https://github.com/gavingoh99/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/linnn-7/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Austintjh19/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/linnn-7/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/LifHoshi/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gavingoh99/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gavingoh99/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [8/430] Analyzing https://github.com/whitesnowx/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Austintjh19/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Lalelulilulela/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [9/430] Analyzing https://github.com/tahnya/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Lalelulilulela/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tahnya/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tahnya/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/beefsausagee/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tahnya/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [14/430] Analyzing https://github.com/E0735389/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/beefsausagee/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/beefsausagee/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [15/430] Analyzing https://github.com/c-wenlong/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/E0735389/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/E0735389/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/c-wenlong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/c-wenlong/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/erv-teo/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PyromancerBoom/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/whitesnowx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/whitesnowx/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/martinng01/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/javierng2knus/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tahnya/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tahnya/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/martinng01/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PyromancerBoom/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dwangwk/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/javierng2knus/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SherisseTJW/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/bryanyee33/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dwangwk/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/bryanyee33/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SherisseTJW/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SherisseTJW/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [16/430] Analyzing https://github.com/ChuaZenKhoon/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yongkotaro/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChuaZenKhoon/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChuaZenKhoon/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yongkotaro/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yongkotaro/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [17/430] Analyzing https://github.com/gauravuj/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gauravuj/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gauravuj/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tahnya/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tahnya/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tahnya/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [10/430] Analyzing https://github.com/SherisseTJW/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/whitesnowx/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/martinng01/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Lalelulilulela/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SherisseTJW/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SherisseTJW/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cliftonchee/ip.git... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/E0735389/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/peterXGD/ip.git... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cliftonchee/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/E0735389/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/E0735389/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [18/430] Analyzing https://github.com/ziyi22/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ziyi22/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ziyi22/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChuaZenKhoon/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/c-wenlong/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChuaZenKhoon/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/martinng01/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dwangwk/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChuaZenKhoon/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [19/430] Analyzing https://github.com/marclamp/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/c-wenlong/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/peterXGD/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/c-wenlong/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [20/430] Analyzing https://github.com/LifHoshi/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/peterXGD/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bryanyee33/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/whitesnowx/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/whitesnowx/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [11/430] Analyzing https://github.com/gavin331/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/alex-setyawan/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alex-setyawan/ip.git to complete... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bryanyee33/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jawad280/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jawad280/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/marclamp/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/marclamp/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LifHoshi/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LifHoshi/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alex-setyawan/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ziyi22/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ziyi22/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ziyi22/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [21/430] Analyzing https://github.com/erv-teo/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gavin331/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gavin331/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/eliotlee68/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gavingoh99/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gavingoh99/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gavingoh99/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [12/430] Analyzing https://github.com/E0735389/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/cliftonchee/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Howlong11/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/erv-teo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/erv-teo/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Howlong11/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gauravuj/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gauravuj/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gauravuj/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [22/430] Analyzing https://github.com/PyromancerBoom/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/erv-teo/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/PyromancerBoom/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/PyromancerBoom/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/erv-teo/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/erv-teo/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [23/430] Analyzing https://github.com/javierng2knus/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/javierng2knus/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/javierng2knus/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/PyromancerBoom/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/E0735389/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/E0735389/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/eliotlee68/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/peterXGD/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PyromancerBoom/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PyromancerBoom/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [24/430] Analyzing https://github.com/Lalelulilulela/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Howlong11/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/eliotlee68/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alex-setyawan/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [13/430] Analyzing https://github.com/beefsausagee/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/bennyLCK/ip.git... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LifHoshi/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bennyLCK/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Jawad280/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LifHoshi/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LifHoshi/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [25/430] Analyzing https://github.com/martinng01/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/garywongkai/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Lalelulilulela/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Lalelulilulela/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/garywongkai/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alex-setyawan/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/marclamp/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sebin0817/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/martinng01/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/martinng01/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Howlong11/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sebin0817/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/marclamp/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AL-ZT/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/marclamp/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [26/430] Analyzing https://github.com/dwangwk/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AL-ZT/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dwangwk/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dwangwk/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/javierng2knus/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/javierng2knus/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/javierng2knus/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [27/430] Analyzing https://github.com/bryanyee33/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bryanyee33/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bryanyee33/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/garywongkai/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bennyLCK/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/beefsausagee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/beefsausagee/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SherisseTJW/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gavin331/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SherisseTJW/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gavin331/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SherisseTJW/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gavin331/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [14/430] Analyzing https://github.com/yongkotaro/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [15/430] Analyzing https://github.com/c-wenlong/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/beefsausagee/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yongkotaro/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yongkotaro/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/c-wenlong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/c-wenlong/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Howlong11/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/beefsausagee/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sebin0817/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/garywongkai/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/beefsausagee/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [16/430] Analyzing https://github.com/ziyi22/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AL-ZT/ip.git... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/bennyLCK/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/iynixil/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/iynixil/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/garywongkai/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AL-ZT/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ys112/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sebin0817/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ys112/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dwangwk/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/iynixil/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/acekhoon/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/acekhoon/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/martinng01/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Lalelulilulela/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ys112/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ziyi22/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ziyi22/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/E0735389/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/E0735389/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/E0735389/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [17/430] Analyzing https://github.com/gauravuj/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gauravuj/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gauravuj/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ziyi22/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ziyi22/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yongkotaro/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ziyi22/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [18/430] Analyzing https://github.com/ChuaZenKhoon/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yongkotaro/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yongkotaro/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ys112/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/iynixil/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChuaZenKhoon/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChuaZenKhoon/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AL-ZT/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dwangwk/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Lalelulilulela/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dwangwk/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Lalelulilulela/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [28/430] Analyzing https://github.com/cliftonchee/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/martinng01/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/martinng01/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [29/430] Analyzing https://github.com/peterXGD/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [19/430] Analyzing https://github.com/marclamp/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/acekhoon/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/larainezo/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [30/430] Analyzing https://github.com/Jawad280/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/larainezo/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/peterXGD/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/peterXGD/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jawad280/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jawad280/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cliftonchee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cliftonchee/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bryanyee33/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bryanyee33/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bryanyee33/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [31/430] Analyzing https://github.com/alex-setyawan/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alex-setyawan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alex-setyawan/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/iynixil/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/peterXGD/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yyccbb/ip.git... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/peterXGD/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yyccbb/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/peterXGD/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [32/430] Analyzing https://github.com/Howlong11/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/acekhoon/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AidenLYT/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yyccbb/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/larainezo/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/minghowC/ip.git... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AidenLYT/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Howlong11/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Howlong11/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/marclamp/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/marclamp/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/minghowC/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/c-wenlong/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/c-wenlong/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/c-wenlong/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/larainezo/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ys112/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/minghowC/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [20/430] Analyzing https://github.com/LifHoshi/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jaspertzx/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/minghowC/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jaspertzx/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cliftonchee/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cliftonchee/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alex-setyawan/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cliftonchee/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [33/430] Analyzing https://github.com/bennyLCK/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alex-setyawan/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alex-setyawan/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [34/430] Analyzing https://github.com/garywongkai/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bennyLCK/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bennyLCK/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jawad280/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/garywongkai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/garywongkai/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jawad280/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jawad280/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Howlong11/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [35/430] Analyzing https://github.com/sebin0817/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Howlong11/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Howlong11/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [36/430] Analyzing https://github.com/AL-ZT/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sebin0817/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sebin0817/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AL-ZT/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AL-ZT/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yyccbb/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/limrik/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/limrik/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/minghowC/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LifHoshi/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LifHoshi/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/limrik/ip.git to complete... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cyqjoseph/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cyqjoseph/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jaspertzx/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gauravuj/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChuaZenKhoon/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gauravuj/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gauravuj/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChuaZenKhoon/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [21/430] Analyzing https://github.com/erv-teo/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChuaZenKhoon/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AidenLYT/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [22/430] Analyzing https://github.com/javierng2knus/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jeong-jaeho/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/erv-teo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/erv-teo/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jeong-jaeho/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AidenLYT/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wilsonwid/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wilsonwid/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/garywongkai/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/garywongkai/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/garywongkai/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [37/430] Analyzing https://github.com/iynixil/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sebin0817/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/iynixil/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/iynixil/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AL-ZT/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bennyLCK/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sebin0817/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sebin0817/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [38/430] Analyzing https://github.com/acekhoon/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AL-ZT/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AL-ZT/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bennyLCK/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [39/430] Analyzing https://github.com/larainezo/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bennyLCK/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [40/430] Analyzing https://github.com/ys112/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/acekhoon/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/acekhoon/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/larainezo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/larainezo/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ys112/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ys112/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/javierng2knus/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/javierng2knus/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jaspertzx/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/marclamp/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/limrik/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wilsonwid/ip.git... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/iamtr/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/marclamp/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/marclamp/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [23/430] Analyzing https://github.com/PyromancerBoom/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/iamtr/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cyqjoseph/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wilsonwid/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wilsonwid/ip.git to complete... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/PyromancerBoom/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/PyromancerBoom/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/erv-teo/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jeong-jaeho/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yleeyilin/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/erv-teo/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/erv-teo/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cyqjoseph/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [24/430] Analyzing https://github.com/martinng01/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yleeyilin/ip.git to complete... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/RunjiaChen/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/martinng01/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/martinng01/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/RunjiaChen/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yleeyilin/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jeong-jaeho/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wilsonwid/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nichee/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LifHoshi/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nichee/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/larainezo/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/acekhoon/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/larainezo/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/larainezo/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [41/430] Analyzing https://github.com/yyccbb/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/acekhoon/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iynixil/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/acekhoon/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [42/430] Analyzing https://github.com/minghowC/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yyccbb/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yyccbb/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/iynixil/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/minghowC/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/minghowC/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/iynixil/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [43/430] Analyzing https://github.com/Jaspertzx/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ys112/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jaspertzx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jaspertzx/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ys112/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ys112/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [44/430] Analyzing https://github.com/AidenLYT/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/iamtr/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AidenLYT/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AidenLYT/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LifHoshi/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LifHoshi/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/leeweiming3/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [25/430] Analyzing https://github.com/Lalelulilulela/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/PyromancerBoom/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/leeweiming3/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nichee/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Lalelulilulela/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Lalelulilulela/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PyromancerBoom/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PyromancerBoom/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [26/430] Analyzing https://github.com/dwangwk/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dwangwk/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dwangwk/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/javierng2knus/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RunjiaChen/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yleeyilin/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/javierng2knus/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/javierng2knus/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/leepoeaik/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/danielleloh/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/danielleloh/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [27/430] Analyzing https://github.com/bryanyee33/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/leepoeaik/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RunjiaChen/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/danielleloh/ip.git to complete... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bryanyee33/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bryanyee33/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nichee/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wallacexuhanxiao/ip.git... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/minghowC/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wallacexuhanxiao/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/minghowC/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/minghowC/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [45/430] Analyzing https://github.com/limrik/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/limrik/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/limrik/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yyccbb/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yyccbb/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yyccbb/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jaspertzx/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [46/430] Analyzing https://github.com/cyqjoseph/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jaspertzx/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jaspertzx/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [47/430] Analyzing https://github.com/wilsonwid/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cyqjoseph/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cyqjoseph/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wilsonwid/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wilsonwid/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/leeweiming3/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wallacexuhanxiao/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LimZiJia/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wallacexuhanxiao/ip.git to complete... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LimZiJia/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/thewongdylan/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/martinng01/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/martinng01/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/martinng01/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/leepoeaik/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [28/430] Analyzing https://github.com/cliftonchee/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/danielleloh/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AidenLYT/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/thewongdylan/ip.git... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/thewongdylan/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Ryan-Reno/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/leepoeaik/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jerremyng/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cliftonchee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cliftonchee/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Ryan-Reno/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jerremyng/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AidenLYT/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AidenLYT/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [48/430] Analyzing https://github.com/jeong-jaeho/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dwangwk/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Ryan-Reno/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Ryan-Reno/ip.git' 'repos/Ryan-Reno_ip/ip_bare' on path . : Cloning into bare repository 'repos/Ryan-Reno_ip/ip_bare'... @@ -956,1315 +716,943 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/marcus-ny/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jeong-jaeho/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jeong-jaeho/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/marcus-ny/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/limrik/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/limrik/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/limrik/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [49/430] Analyzing https://github.com/iamtr/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/iamtr/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/iamtr/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jeong-jaeho/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jeong-jaeho/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jeong-jaeho/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [50/430] Analyzing https://github.com/nichee/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wilsonwid/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/thewongdylan/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dwangwk/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jerremyng/ip.git... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wallacexuhanxiao/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dwangwk/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/LimZiJia/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bryanyee33/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [29/430] Analyzing https://github.com/peterXGD/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/marcus-ny/ip.git... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jerremyng/ip.git to complete... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wapisai/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nichee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nichee/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ty-stan0417/ip.git... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wilsonwid/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wilsonwid/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/marcus-ny/ip.git to complete... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bryanyee33/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bryanyee33/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [30/430] Analyzing https://github.com/alex-setyawan/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wapisai/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [51/430] Analyzing https://github.com/yleeyilin/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/peterXGD/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/peterXGD/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Lalelulilulela/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alex-setyawan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alex-setyawan/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/thewongdylan/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Lalelulilulela/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Lalelulilulela/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ty-stan0417/ip.git... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [31/430] Analyzing https://github.com/Jawad280/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Ty-stan0417/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jawad280/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jawad280/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jerremyng/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yleeyilin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yleeyilin/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alex-setyawan/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/marcus-ny/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kjw142857/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kjw142857/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iamtr/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/marcus-ny/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ljy0422/ip.git... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/iamtr/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cyqjoseph/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alex-setyawan/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alex-setyawan/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [32/430] Analyzing https://github.com/garywongkai/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ljy0422/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/iamtr/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [52/430] Analyzing https://github.com/RunjiaChen/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/RunjiaChen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/RunjiaChen/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cyqjoseph/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cyqjoseph/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [53/430] Analyzing https://github.com/leeweiming3/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/leeweiming3/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/leeweiming3/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nichee/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nichee/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ty-stan0417/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nichee/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wapisai/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/lokidoki102/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [54/430] Analyzing https://github.com/wallacexuhanxiao/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/lokidoki102/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wapisai/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wallacexuhanxiao/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wallacexuhanxiao/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/garywongkai/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/garywongkai/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ty-stan0417/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tanguoyang/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cliftonchee/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tanguoyang/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cliftonchee/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cliftonchee/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [33/430] Analyzing https://github.com/Howlong11/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/peterXGD/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Howlong11/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Howlong11/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/peterXGD/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/peterXGD/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [34/430] Analyzing https://github.com/sebin0817/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sebin0817/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sebin0817/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kjw142857/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ljy0422/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/myang2020/ip.git... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leeweiming3/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/myang2020/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yleeyilin/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ljy0422/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leeweiming3/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leeweiming3/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [55/430] Analyzing https://github.com/danielleloh/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jaejayrome/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jaejayrome/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yleeyilin/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yleeyilin/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/danielleloh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/danielleloh/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [56/430] Analyzing https://github.com/leepoeaik/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/leepoeaik/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/leepoeaik/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RunjiaChen/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RunjiaChen/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RunjiaChen/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [57/430] Analyzing https://github.com/LimZiJia/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/lokidoki102/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanguoyang/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LimZiJia/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LimZiJia/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cocoanautz/ip.git... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leepoeaik/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cocoanautz/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/danielleloh/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanguoyang/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kaitinghh/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kaitinghh/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leepoeaik/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leepoeaik/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [58/430] Analyzing https://github.com/thewongdylan/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/danielleloh/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/danielleloh/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [59/430] Analyzing https://github.com/jerremyng/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/garywongkai/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jawad280/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/garywongkai/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/garywongkai/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jawad280/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [35/430] Analyzing https://github.com/bennyLCK/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jawad280/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [36/430] Analyzing https://github.com/iynixil/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Howlong11/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Howlong11/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Howlong11/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bennyLCK/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bennyLCK/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/iynixil/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/iynixil/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [37/430] Analyzing https://github.com/ys112/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sebin0817/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/myang2020/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ys112/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ys112/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/1rbg/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/thewongdylan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/thewongdylan/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jerremyng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jerremyng/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/1rbg/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jaejayrome/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cocoanautz/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/benson1029/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/benson1029/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/thewongdylan/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wallacexuhanxiao/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LimZiJia/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/thewongdylan/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/thewongdylan/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [60/430] Analyzing https://github.com/marcus-ny/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wallacexuhanxiao/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wallacexuhanxiao/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/marcus-ny/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/marcus-ny/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [61/430] Analyzing https://github.com/Ty-stan0417/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LimZiJia/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LimZiJia/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [62/430] Analyzing https://github.com/wapisai/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sebin0817/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sebin0817/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [38/430] Analyzing https://github.com/AL-ZT/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kaitinghh/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cocoanautz/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wapisai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wapisai/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ty-stan0417/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ty-stan0417/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CaptainKeqing/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/benson1029/ip.git to complete... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yuechen2001/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AL-ZT/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AL-ZT/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CaptainKeqing/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yuechen2001/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/1rbg/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wang-xinrong/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wang-xinrong/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jerremyng/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CaptainKeqing/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/benson1029/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuechen2001/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jiahui0309/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jiahui0309/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jerremyng/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jerremyng/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [63/430] Analyzing https://github.com/kjw142857/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/marcus-ny/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/marcus-ny/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/marcus-ny/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [64/430] Analyzing https://github.com/ljy0422/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kjw142857/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kjw142857/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ljy0422/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ljy0422/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ty-stan0417/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wapisai/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ty-stan0417/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ty-stan0417/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [65/430] Analyzing https://github.com/lokidoki102/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wapisai/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wapisai/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [66/430] Analyzing https://github.com/tanguoyang/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lokidoki102/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lokidoki102/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanguoyang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanguoyang/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuechen2001/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TheodoreKooo/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CaptainKeqing/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TheodoreKooo/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kokerinks/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TheodoreKooo/ip.git to complete... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kokerinks/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanguoyang/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanguoyang/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kjw142857/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanguoyang/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [67/430] Analyzing https://github.com/myang2020/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kjw142857/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kjw142857/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [68/430] Analyzing https://github.com/jaejayrome/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/myang2020/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/myang2020/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ljy0422/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jaejayrome/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jaejayrome/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ljy0422/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ljy0422/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [69/430] Analyzing https://github.com/cocoanautz/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cocoanautz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cocoanautz/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jiahui0309/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AL-ZT/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AL-ZT/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ys112/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AL-ZT/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [39/430] Analyzing https://github.com/acekhoon/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ys112/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bennyLCK/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ys112/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [40/430] Analyzing https://github.com/larainezo/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iynixil/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/acekhoon/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/acekhoon/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bennyLCK/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/larainezo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/larainezo/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/iynixil/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bennyLCK/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/iynixil/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wang-xinrong/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [41/430] Analyzing https://github.com/yyccbb/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [42/430] Analyzing https://github.com/minghowC/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Ella-e/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Ella-e/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yyccbb/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yyccbb/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TheodoreKooo/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/minghowC/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/minghowC/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jiahui0309/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ForAeons/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ForAeons/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/myang2020/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/myang2020/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/myang2020/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [70/430] Analyzing https://github.com/kaitinghh/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kaitinghh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kaitinghh/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kokerinks/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/solomonng2001/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/solomonng2001/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lokidoki102/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TheodoreKooo/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Xuyan0518/ip.git... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cocoanautz/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lokidoki102/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ForAeons/ip.git to complete... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Xuyan0518/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lokidoki102/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [71/430] Analyzing https://github.com/1rbg/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cocoanautz/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cocoanautz/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [72/430] Analyzing https://github.com/benson1029/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jaejayrome/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/1rbg/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/1rbg/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/benson1029/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/benson1029/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jaejayrome/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jaejayrome/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [73/430] Analyzing https://github.com/yuechen2001/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yuechen2001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yuechen2001/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/minghowC/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/larainezo/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/minghowC/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/minghowC/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [43/430] Analyzing https://github.com/AidenLYT/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/larainezo/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Ella-e/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/larainezo/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [44/430] Analyzing https://github.com/Jaspertzx/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/justinlengch/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ForAeons/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kaitinghh/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/justinlengch/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/solomonng2001/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jjchee77/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Xuyan0518/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jjchee77/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kaitinghh/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kaitinghh/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [74/430] Analyzing https://github.com/CaptainKeqing/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CaptainKeqing/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CaptainKeqing/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/solomonng2001/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jaspertzx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jaspertzx/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AidenLYT/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AidenLYT/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ronnnnnnnnn/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ronnnnnnnnn/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Xuyan0518/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/acekhoon/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ForAeons/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/acekhoon/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/acekhoon/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [45/430] Analyzing https://github.com/limrik/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dayn-1/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dayn-1/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/benson1029/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yuechen2001/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/1rbg/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yuechen2001/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yuechen2001/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [75/430] Analyzing https://github.com/jiahui0309/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/benson1029/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/benson1029/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/1rbg/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [76/430] Analyzing https://github.com/wang-xinrong/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/1rbg/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [77/430] Analyzing https://github.com/kokerinks/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jiahui0309/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jiahui0309/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wang-xinrong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wang-xinrong/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kokerinks/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kokerinks/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/limrik/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/limrik/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yyccbb/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yyccbb/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yyccbb/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [46/430] Analyzing https://github.com/jeong-jaeho/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jeong-jaeho/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jeong-jaeho/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/justinlengch/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NeoHW/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jjchee77/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tituschewxj/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NeoHW/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tituschewxj/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ronnnnnnnnn/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NeoHW/ip.git to complete... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dayn-1/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/choowengyan/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jeong-jaeho/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/choowengyan/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CaptainKeqing/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/CaptainKeqing/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dayn-1/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/CaptainKeqing/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [78/430] Analyzing https://github.com/TheodoreKooo/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/guanquann/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/guanquann/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/TheodoreKooo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/TheodoreKooo/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jiahui0309/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jiahui0309/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jiahui0309/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wang-xinrong/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [79/430] Analyzing https://github.com/Ella-e/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wang-xinrong/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wang-xinrong/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [80/430] Analyzing https://github.com/ForAeons/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ella-e/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ella-e/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kokerinks/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jeong-jaeho/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jeong-jaeho/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [47/430] Analyzing https://github.com/cyqjoseph/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jaspertzx/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jaspertzx/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jaspertzx/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cyqjoseph/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cyqjoseph/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [48/430] Analyzing https://github.com/wilsonwid/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wilsonwid/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wilsonwid/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/NeoHW/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tituschewxj/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/guanquann/ip.git... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Hibeom0929/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/guanquann/ip.git to complete... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Hibeom0929/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kokerinks/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kokerinks/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ForAeons/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ForAeons/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [81/430] Analyzing https://github.com/solomonng2001/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tituschewxj/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AidenLYT/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/choowengyan/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JukeBoxK/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JukeBoxK/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/solomonng2001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/solomonng2001/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/TheodoreKooo/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/choowengyan/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lynnetteeee/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lynnetteeee/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/TheodoreKooo/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/TheodoreKooo/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [82/430] Analyzing https://github.com/Xuyan0518/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Xuyan0518/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Xuyan0518/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AidenLYT/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AidenLYT/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [49/430] Analyzing https://github.com/iamtr/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/iamtr/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/iamtr/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/limrik/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/limrik/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/limrik/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [50/430] Analyzing https://github.com/RunjiaChen/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/RunjiaChen/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/RunjiaChen/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Hibeom0929/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/guanquann/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lynnetteeee/ip.git... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tamagochuuu/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tamagochuuu/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ella-e/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ella-e/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ella-e/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [83/430] Analyzing https://github.com/justinlengch/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Xuyan0518/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lynnetteeee/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JukeBoxK/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tamagochuuu/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/owenong1/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/justinlengch/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/justinlengch/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Hibeom0929/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Xuyan0518/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/willowisp01/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Xuyan0518/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [84/430] Analyzing https://github.com/jjchee77/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/owenong1/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/solomonng2001/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/willowisp01/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jjchee77/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jjchee77/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iamtr/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/iamtr/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/iamtr/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [51/430] Analyzing https://github.com/yleeyilin/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/lynnetteeee/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/solomonng2001/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/solomonng2001/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [85/430] Analyzing https://github.com/ronnnnnnnnn/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tamagochuuu/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/willowisp01/ip.git... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/HongRay/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/willowisp01/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yleeyilin/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yleeyilin/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/owenong1/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/HongRay/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ronnnnnnnnn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ronnnnnnnnn/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tamagochuuu/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Wyrkx/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Wyrkx/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/justinlengch/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/justinlengch/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/justinlengch/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [86/430] Analyzing https://github.com/dayn-1/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dayn-1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dayn-1/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/owenong1/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wilsonwid/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ronnnnnnnnn/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wilsonwid/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Benson15912/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wilsonwid/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cyqjoseph/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Benson15912/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [52/430] Analyzing https://github.com/nichee/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nichee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nichee/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cyqjoseph/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cyqjoseph/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [53/430] Analyzing https://github.com/leeweiming3/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HongRay/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/leeweiming3/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/leeweiming3/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/willowisp01/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kailinteoo/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kailinteoo/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HongRay/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ForAeons/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Alteqa/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Alteqa/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ronnnnnnnnn/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ronnnnnnnnn/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ronnnnnnnnn/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ForAeons/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [87/430] Analyzing https://github.com/NeoHW/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ForAeons/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [88/430] Analyzing https://github.com/tituschewxj/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jjchee77/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tituschewxj/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tituschewxj/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NeoHW/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NeoHW/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RunjiaChen/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Wyrkx/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kailinteoo/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Alteqa/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/MaYuehan/ip.git... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dayn-1/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RunjiaChen/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RunjiaChen/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [54/430] Analyzing https://github.com/leepoeaik/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/MaYuehan/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jjchee77/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jjchee77/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [89/430] Analyzing https://github.com/choowengyan/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dayn-1/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dayn-1/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/choowengyan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/choowengyan/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [90/430] Analyzing https://github.com/guanquann/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/guanquann/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/guanquann/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/choowengyan/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/leepoeaik/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/leepoeaik/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Benson15912/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zhenghuil/ip.git... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/choowengyan/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zhenghuil/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/choowengyan/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [91/430] Analyzing https://github.com/JukeBoxK/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JukeBoxK/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JukeBoxK/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yleeyilin/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kailinteoo/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sarjinius/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sarjinius/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Alteqa/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yleeyilin/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yleeyilin/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [55/430] Analyzing https://github.com/danielleloh/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sarjinius/ip.git... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/appleraincoat/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/appleraincoat/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sarjinius/ip.git to complete... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/MaYuehan/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leeweiming3/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/appleraincoat/ip.git to complete... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/danielleloh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/reetmitra/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/danielleloh/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leepoeaik/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/reetmitra/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/guanquann/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/guanquann/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/guanquann/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NeoHW/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [92/430] Analyzing https://github.com/Hibeom0929/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leeweiming3/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nichee/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leeweiming3/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [56/430] Analyzing https://github.com/LimZiJia/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leepoeaik/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leepoeaik/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [57/430] Analyzing https://github.com/wallacexuhanxiao/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zhenghuil/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JukeBoxK/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nichee/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/taeewonnn/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Hibeom0929/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Hibeom0929/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nichee/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [58/430] Analyzing https://github.com/thewongdylan/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LimZiJia/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LimZiJia/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wallacexuhanxiao/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wallacexuhanxiao/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/taeewonnn/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NeoHW/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NeoHW/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JukeBoxK/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [93/430] Analyzing https://github.com/lynnetteeee/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JukeBoxK/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tituschewxj/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [94/430] Analyzing https://github.com/tamagochuuu/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lynnetteeee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lynnetteeee/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tituschewxj/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tituschewxj/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [95/430] Analyzing https://github.com/owenong1/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/thewongdylan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/thewongdylan/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/sarjinius/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tamagochuuu/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tamagochuuu/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/appleraincoat/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jamessinmaojun/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/reetmitra/ip.git completed! +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/H4mes/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/owenong1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/owenong1/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/H4mes/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jamessinmaojun/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/reetmitra/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Hibeom0929/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/H4mes/ip.git to complete... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ChocoRagdoll/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ChocoRagdoll/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Hibeom0929/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Hibeom0929/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [96/430] Analyzing https://github.com/willowisp01/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lynnetteeee/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lynnetteeee/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lynnetteeee/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/willowisp01/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/willowisp01/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [97/430] Analyzing https://github.com/HongRay/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/HongRay/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/HongRay/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tamagochuuu/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/danielleloh/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/taeewonnn/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tamagochuuu/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/danielleloh/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ondretann/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tamagochuuu/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [98/430] Analyzing https://github.com/Wyrkx/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/danielleloh/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [59/430] Analyzing https://github.com/jerremyng/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ondretann/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/owenong1/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Wyrkx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Wyrkx/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/owenong1/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/owenong1/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [99/430] Analyzing https://github.com/Benson15912/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Benson15912/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Benson15912/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Wyrkx/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Wyrkx/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Wyrkx/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [100/430] Analyzing https://github.com/kailinteoo/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HongRay/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/willowisp01/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jerremyng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jerremyng/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/thewongdylan/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/H4mes/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ashleygoh1/ip.git... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HongRay/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kailinteoo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kailinteoo/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HongRay/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jamessinmaojun/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [101/430] Analyzing https://github.com/Alteqa/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ashleygoh1/ip.git... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/justincred/ip.git... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/justincred/ip.git to complete... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/thewongdylan/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ashleygoh1/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/thewongdylan/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LimZiJia/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [60/430] Analyzing https://github.com/marcus-ny/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ChocoRagdoll/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/justincred/ip.git... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/willowisp01/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/willowisp01/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LimZiJia/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LimZiJia/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JerryWang0000/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [102/430] Analyzing https://github.com/MaYuehan/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/justincred/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Alteqa/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Alteqa/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MaYuehan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MaYuehan/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [61/430] Analyzing https://github.com/wapisai/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/marcus-ny/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/marcus-ny/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JerryWang0000/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wapisai/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wapisai/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ondretann/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/julia-cp/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/julia-cp/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kailinteoo/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kailinteoo/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kailinteoo/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [103/430] Analyzing https://github.com/zhenghuil/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zhenghuil/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zhenghuil/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Alteqa/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/justincred/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JerryWang0000/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ashleygoh1/ip.git completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Tanzhiheng26/ip.git... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Alteqa/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/BryanL2303/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Alteqa/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [104/430] Analyzing https://github.com/appleraincoat/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Tanzhiheng26/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/BryanL2303/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Benson15912/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/appleraincoat/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/appleraincoat/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ashleygoh1/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JerryWang0000/ip.git completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sethteo/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sethteo/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Benson15912/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Benson15912/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [105/430] Analyzing https://github.com/sarjinius/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/marcus-ny/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/marcus-ny/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/marcus-ny/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wapisai/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [62/430] Analyzing https://github.com/Ty-stan0417/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/julia-cp/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhenghuil/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sarjinius/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sarjinius/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Joelwang22/ip.git... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhenghuil/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhenghuil/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wapisai/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wallacexuhanxiao/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wapisai/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [63/430] Analyzing https://github.com/kjw142857/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ty-stan0417/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ty-stan0417/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Joelwang22/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [106/430] Analyzing https://github.com/reetmitra/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/reetmitra/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/reetmitra/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sarjinius/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MaYuehan/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sarjinius/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sarjinius/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [107/430] Analyzing https://github.com/taeewonnn/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/MaYuehan/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/MaYuehan/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/taeewonnn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/taeewonnn/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [108/430] Analyzing https://github.com/H4mes/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/H4mes/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/H4mes/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/appleraincoat/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/appleraincoat/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/appleraincoat/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [109/430] Analyzing https://github.com/jamessinmaojun/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/reetmitra/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/H4mes/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jamessinmaojun/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jamessinmaojun/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wallacexuhanxiao/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kjw142857/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kjw142857/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wallacexuhanxiao/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [64/430] Analyzing https://github.com/ljy0422/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jerremyng/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ljy0422/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ljy0422/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/BryanL2303/ip.git completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Tanzhiheng26/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jerremyng/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ibnu2651/ip.git... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/reetmitra/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/reetmitra/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ibnu2651/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [110/430] Analyzing https://github.com/ChocoRagdoll/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/H4mes/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/H4mes/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/BryanL2303/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [111/430] Analyzing https://github.com/ondretann/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jerremyng/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SimKianSeng/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [65/430] Analyzing https://github.com/lokidoki102/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ibnu2651/ip.git to complete... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SimKianSeng/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChocoRagdoll/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChocoRagdoll/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lokidoki102/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lokidoki102/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/sethteo/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ondretann/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ondretann/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/guohuang88/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/guohuang88/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/taeewonnn/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/taeewonnn/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/taeewonnn/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Joelwang22/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [112/430] Analyzing https://github.com/justincred/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ty-stan0417/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/rizkidelta/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/rizkidelta/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/justincred/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/justincred/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/justincred/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/justincred/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/justincred/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ondretann/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [113/430] Analyzing https://github.com/JerryWang0000/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JerryWang0000/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JerryWang0000/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ondretann/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ondretann/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [114/430] Analyzing https://github.com/ashleygoh1/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChocoRagdoll/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ashleygoh1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ashleygoh1/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ibnu2651/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChocoRagdoll/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChocoRagdoll/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Murugan-Maniish/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [115/430] Analyzing https://github.com/julia-cp/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ty-stan0417/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ty-stan0417/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [66/430] Analyzing https://github.com/tanguoyang/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanguoyang/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanguoyang/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kjw142857/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kjw142857/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SimKianSeng/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kjw142857/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Murugan-Maniish/ip.git... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [67/430] Analyzing https://github.com/myang2020/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Murugan-Maniish/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ibnu2651/ip.git completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/myang2020/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/myang2020/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AjayArvind2207/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/julia-cp/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/julia-cp/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ljy0422/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AjayArvind2207/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jamessinmaojun/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanguoyang/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ljy0422/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/guohuang88/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ljy0422/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [68/430] Analyzing https://github.com/jaejayrome/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Teee728/ip.git... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jamessinmaojun/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jamessinmaojun/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [116/430] Analyzing https://github.com/Tanzhiheng26/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Teee728/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jaejayrome/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jaejayrome/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/rizkidelta/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JerryWang0000/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanguoyang/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanguoyang/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [69/430] Analyzing https://github.com/cocoanautz/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dillontkh/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dillontkh/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JerryWang0000/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JerryWang0000/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [117/430] Analyzing https://github.com/BryanL2303/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Tanzhiheng26/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Tanzhiheng26/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/BryanL2303/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/BryanL2303/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/julia-cp/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/julia-cp/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/julia-cp/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [118/430] Analyzing https://github.com/sethteo/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sethteo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sethteo/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Tanzhiheng26/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Tanzhiheng26/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Tanzhiheng26/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ashleygoh1/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [119/430] Analyzing https://github.com/Joelwang22/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AjayArvind2207/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cocoanautz/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cocoanautz/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Murugan-Maniish/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/shaunlxw/ip.git... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ashleygoh1/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/shaunlxw/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AjayArvind2207/ip.git completed! +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Morninggloryyy/ip.git... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Morninggloryyy/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/myang2020/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dillontkh/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Teee728/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Morninggloryyy/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ashleygoh1/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jmsandiegoo/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [120/430] Analyzing https://github.com/ibnu2651/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Joelwang22/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Joelwang22/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jmsandiegoo/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Morninggloryyy/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ryanlimdx/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jmsandiegoo/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/myang2020/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/myang2020/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ryanlimdx/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ibnu2651/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ibnu2651/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/BryanL2303/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/BryanL2303/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/BryanL2303/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [121/430] Analyzing https://github.com/SimKianSeng/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sethteo/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [70/430] Analyzing https://github.com/kaitinghh/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lokidoki102/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Morninggloryyy/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Morninggloryyy/ip.git' 'repos/Morninggloryyy_ip/ip_bare' on path . : Cloning into bare repository 'repos/Morninggloryyy_ip/ip_bare'... @@ -2280,457 +1668,295 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chiralcentre/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SimKianSeng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SimKianSeng/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kaitinghh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kaitinghh/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chiralcentre/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sethteo/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sethteo/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [122/430] Analyzing https://github.com/guohuang88/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/guohuang88/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/guohuang88/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Joelwang22/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Joelwang22/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Joelwang22/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [123/430] Analyzing https://github.com/rizkidelta/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rizkidelta/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rizkidelta/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lokidoki102/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lokidoki102/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [71/430] Analyzing https://github.com/1rbg/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/shaunlxw/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ibnu2651/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jmsandiegoo/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/KhoonSun47/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ThatGirlJam/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ThatGirlJam/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/1rbg/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/1rbg/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/KhoonSun47/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ibnu2651/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ibnu2651/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [124/430] Analyzing https://github.com/AjayArvind2207/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SimKianSeng/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AjayArvind2207/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AjayArvind2207/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SimKianSeng/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cocoanautz/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jaejayrome/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cocoanautz/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cocoanautz/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [72/430] Analyzing https://github.com/CaptainKeqing/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jaejayrome/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jaejayrome/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [73/430] Analyzing https://github.com/yuechen2001/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CaptainKeqing/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CaptainKeqing/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yuechen2001/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yuechen2001/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jmsandiegoo/ip.git completed! +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ryanlimdx/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SimKianSeng/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [125/430] Analyzing https://github.com/Murugan-Maniish/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ThatGirlJam/ip.git... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/0liverkong/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/0liverkong/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Murugan-Maniish/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Murugan-Maniish/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rizkidelta/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rizkidelta/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rizkidelta/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ThatGirlJam/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/chiralcentre/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [126/430] Analyzing https://github.com/dillontkh/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/xuelinglow/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xuelinglow/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dillontkh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dillontkh/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/guohuang88/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AjayArvind2207/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/guohuang88/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/guohuang88/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AjayArvind2207/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AjayArvind2207/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [127/430] Analyzing https://github.com/Teee728/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [128/430] Analyzing https://github.com/shaunlxw/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Teee728/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Teee728/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shaunlxw/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shaunlxw/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Murugan-Maniish/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Murugan-Maniish/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Murugan-Maniish/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [129/430] Analyzing https://github.com/jmsandiegoo/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jmsandiegoo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jmsandiegoo/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/KhoonSun47/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ThatGirlJam/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kaitinghh/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yashpola/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yashpola/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/breezetall/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kaitinghh/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kaitinghh/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [74/430] Analyzing https://github.com/benson1029/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/benson1029/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/benson1029/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/0liverkong/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/breezetall/ip.git... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ThatGirlJam/ip.git completed! +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/breezetall/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JiaXinEu/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JiaXinEu/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yuechen2001/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/xuelinglow/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yisiox/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/1rbg/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JiaXinEu/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yisiox/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Teee728/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Teee728/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Teee728/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [130/430] Analyzing https://github.com/ryanlimdx/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ryanlimdx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ryanlimdx/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shaunlxw/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shaunlxw/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shaunlxw/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [131/430] Analyzing https://github.com/chiralcentre/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chiralcentre/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chiralcentre/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dillontkh/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dillontkh/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dillontkh/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [132/430] Analyzing https://github.com/KhoonSun47/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KhoonSun47/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KhoonSun47/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jmsandiegoo/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ryanlimdx/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ryanlimdx/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ryanlimdx/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jmsandiegoo/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jmsandiegoo/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [133/430] Analyzing https://github.com/ThatGirlJam/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [134/430] Analyzing https://github.com/0liverkong/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yuechen2001/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yashpola/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yuechen2001/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [75/430] Analyzing https://github.com/wang-xinrong/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/maiyasaliha/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/1rbg/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/1rbg/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wang-xinrong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wang-xinrong/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [76/430] Analyzing https://github.com/TheodoreKooo/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/maiyasaliha/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/TheodoreKooo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/TheodoreKooo/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CaptainKeqing/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/CaptainKeqing/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/CaptainKeqing/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [77/430] Analyzing https://github.com/jiahui0309/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/breezetall/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yisiox/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/0liverkong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/0liverkong/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ThatGirlJam/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ThatGirlJam/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jiahui0309/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jiahui0309/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/triciiaaa/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/maiyasaliha/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/triciiaaa/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JiaXinEu/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yisiox/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jolonauh/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/triciiaaa/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/maiyasaliha/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jolonauh/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/alvinnzz/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alvinnzz/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chiralcentre/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chiralcentre/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chiralcentre/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [135/430] Analyzing https://github.com/xuelinglow/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xuelinglow/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xuelinglow/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KhoonSun47/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ThatGirlJam/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KhoonSun47/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KhoonSun47/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [136/430] Analyzing https://github.com/yashpola/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ThatGirlJam/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ThatGirlJam/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [137/430] Analyzing https://github.com/breezetall/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yashpola/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yashpola/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/breezetall/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/breezetall/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/0liverkong/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/maiyasaliha/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wolffe88/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alvinnzz/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wolffe88/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/benson1029/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/benson1029/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/benson1029/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [78/430] Analyzing https://github.com/kokerinks/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/TheodoreKooo/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kokerinks/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kokerinks/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/TheodoreKooo/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/TheodoreKooo/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [79/430] Analyzing https://github.com/Ella-e/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ella-e/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ella-e/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/triciiaaa/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/0liverkong/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jolonauh/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/menatahari/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/0liverkong/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/menatahari/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [138/430] Analyzing https://github.com/yisiox/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wolffe88/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jolonauh/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alvinnzz/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wang-xinrong/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/modembcc/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alvinnzz/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wolffe88/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tsulim/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/modembcc/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yisiox/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yisiox/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tsulim/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xuelinglow/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xuelinglow/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xuelinglow/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/breezetall/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [139/430] Analyzing https://github.com/JiaXinEu/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/breezetall/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yashpola/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/breezetall/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JiaXinEu/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JiaXinEu/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [140/430] Analyzing https://github.com/maiyasaliha/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yashpola/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yashpola/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/maiyasaliha/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/maiyasaliha/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [141/430] Analyzing https://github.com/triciiaaa/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/triciiaaa/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/triciiaaa/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tsulim/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wolffe88/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/modembcc/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tanyunchao/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wang-xinrong/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanyunchao/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wang-xinrong/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [80/430] Analyzing https://github.com/solomonng2001/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/solomonng2001/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/solomonng2001/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jiahui0309/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jiahui0309/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jiahui0309/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [81/430] Analyzing https://github.com/Xuyan0518/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Xuyan0518/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Xuyan0518/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kokerinks/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanyunchao/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yashma-sonara/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Hwww23/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/menatahari/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yisiox/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanyunchao/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Hwww23/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rickkoh/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/modembcc/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yashma-sonara/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/triciiaaa/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yisiox/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rickkoh/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yisiox/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [142/430] Analyzing https://github.com/Jolonauh/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/triciiaaa/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/triciiaaa/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [143/430] Analyzing https://github.com/alvinnzz/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jolonauh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jolonauh/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/maiyasaliha/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alvinnzz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alvinnzz/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/maiyasaliha/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/maiyasaliha/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [144/430] Analyzing https://github.com/modembcc/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/modembcc/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/modembcc/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JiaXinEu/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JiaXinEu/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JiaXinEu/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [145/430] Analyzing https://github.com/tsulim/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Hwww23/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jolonauh/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanyunchao/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tsulim/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kokerinks/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ella-e/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Hwww23/ip.git... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kokerinks/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [82/430] Analyzing https://github.com/ForAeons/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rickkoh/ip.git... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ValenciaLim/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tsulim/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tsulim/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jolonauh/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jolonauh/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rickkoh/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Hwww23/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ValenciaLim/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Zer0Legion/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [146/430] Analyzing https://github.com/wolffe88/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yashma-sonara/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Zer0Legion/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/maze508/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wolffe88/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wolffe88/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/maze508/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rickkoh/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/eunrcn/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/eunrcn/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ella-e/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ella-e/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [83/430] Analyzing https://github.com/justinlengch/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/justinlengch/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/justinlengch/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ForAeons/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ForAeons/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "ValenciaLim/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/ValenciaLim/ip.git' 'repos/ValenciaLim_ip/ip_bare' on path . : Cloning into bare repository 'repos/ValenciaLim_ip/ip_bare'... @@ -2746,107 +1972,71 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ziyang27/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ziyang27/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alvinnzz/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/modembcc/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alvinnzz/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alvinnzz/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [147/430] Analyzing https://github.com/menatahari/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/modembcc/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/modembcc/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [148/430] Analyzing https://github.com/Hwww23/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/menatahari/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/menatahari/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Hwww23/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Hwww23/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wolffe88/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wolffe88/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wolffe88/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [149/430] Analyzing https://github.com/tanyunchao/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Hwww23/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanyunchao/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanyunchao/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/maze508/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tsulim/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nusliuyifan/ip.git... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Hwww23/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Zer0Legion/ip.git... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Zer0Legion/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/solomonng2001/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Xuyan0518/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/solomonng2001/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/solomonng2001/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [84/430] Analyzing https://github.com/jjchee77/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yashma-sonara/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Xuyan0518/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Xuyan0518/ip.git (master) completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rickkoh/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/maze508/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Hwww23/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jjchee77/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jjchee77/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [85/430] Analyzing https://github.com/dayn-1/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/eunrcn/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ziyang27/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/maze508/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ziyang27/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/eunrcn/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dayn-1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dayn-1/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/justinlengch/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/justinlengch/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/justinlengch/ip.git (master) completed! +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [86/430] Analyzing https://github.com/tituschewxj/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Zer0Legion/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Hwww23/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [150/430] Analyzing https://github.com/yashma-sonara/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tituschewxj/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tituschewxj/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nusliuyifan/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nusliuyifan/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/miffi/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/miffi/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tsulim/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/menatahari/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tsulim/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yashma-sonara/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yashma-sonara/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [151/430] Analyzing https://github.com/rickkoh/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/menatahari/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/menatahari/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [152/430] Analyzing https://github.com/maze508/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ziyang27/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/eunrcn/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rickkoh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rickkoh/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kwuunnn/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KSSWSept20/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KSSWSept20/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kwuunnn/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/maze508/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/maze508/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "nusliuyifan/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/nusliuyifan/ip.git' 'repos/nusliuyifan_ip/ip_bare' on path . : Cloning into bare repository 'repos/nusliuyifan_ip/ip_bare'... @@ -2862,4937 +2052,5747 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/miffi/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/maze508/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/eunrcn/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kwuunnn/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KSSWSept20/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/miffi/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kwuunnn/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KSSWSept20/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ziyang27/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zengzihui/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zengzihui/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanyunchao/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanyunchao/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanyunchao/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [153/430] Analyzing https://github.com/Zer0Legion/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Zer0Legion/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Zer0Legion/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yashma-sonara/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yashma-sonara/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dayn-1/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dayn-1/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dayn-1/ip.git (master) completed! +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [87/430] Analyzing https://github.com/NeoHW/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/miffi/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yashma-sonara/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [154/430] Analyzing https://github.com/ziyang27/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sdevih/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sdevih/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ziyang27/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ziyang27/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/maze508/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kwuunnn/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/KSSWSept20/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/maze508/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sdevih/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NeoHW/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/DingBao-sys/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/maze508/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [155/430] Analyzing https://github.com/eunrcn/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DingBao-sys/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rickkoh/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/eunrcn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/eunrcn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rickkoh/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rickkoh/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [156/430] Analyzing https://github.com/miffi/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kwuunnn/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NeoHW/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jerome-j/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jerome-j/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sdevih/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DingBao-sys/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zengzihui/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Kaya3842/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jerome-j/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/miffi/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/miffi/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jjchee77/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Kaya3842/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Zer0Legion/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Zer0Legion/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zer0Legion/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [157/430] Analyzing https://github.com/KSSWSept20/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sdevih/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/eunrcn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jjchee77/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jjchee77/ip.git (master) completed! +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [88/430] Analyzing https://github.com/choowengyan/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/choowengyan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/choowengyan/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DingBao-sys/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/legionlegion/ip.git... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/eunrcn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/eunrcn/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KSSWSept20/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KSSWSept20/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [158/430] Analyzing https://github.com/kwuunnn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/legionlegion/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/miffi/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kwuunnn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kwuunnn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/miffi/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/miffi/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [159/430] Analyzing https://github.com/zengzihui/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DingBao-sys/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sdevih/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chiaryan/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zengzihui/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zengzihui/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chiaryan/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Jerome-j/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kaya3842/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chiaryan/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ChrisHo1341/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChrisHo1341/ip.git to complete... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tituschewxj/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kaya3842/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hjuntan/ip.git... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ziyang27/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hjuntan/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChrisHo1341/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ziyang27/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ziyang27/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [160/430] Analyzing https://github.com/sdevih/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sdevih/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sdevih/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zengzihui/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KSSWSept20/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zengzihui/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zengzihui/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [161/430] Analyzing https://github.com/DingBao-sys/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KSSWSept20/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KSSWSept20/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [162/430] Analyzing https://github.com/Jerome-j/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/DingBao-sys/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/DingBao-sys/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jerome-j/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jerome-j/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kwuunnn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ForAeons/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/choowengyan/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tituschewxj/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/choowengyan/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/choowengyan/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [89/430] Analyzing https://github.com/guanquann/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tituschewxj/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [90/430] Analyzing https://github.com/Hibeom0929/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ForAeons/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ForAeons/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [91/430] Analyzing https://github.com/JukeBoxK/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/guanquann/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/guanquann/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Hibeom0929/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Hibeom0929/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JukeBoxK/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JukeBoxK/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/legionlegion/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kwuunnn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kwuunnn/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AwJoey/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [163/430] Analyzing https://github.com/Kaya3842/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chiaryan/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AwJoey/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hjuntan/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ChrisHo1341/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Kaya3842/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Kaya3842/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ZhiWei1010/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ReflectiveObsidian/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ReflectiveObsidian/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chiaryan/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ZhiWei1010/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ReflectiveObsidian/ip.git to complete... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hjuntan/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NusMinato/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/NusMinato/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sdevih/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sdevih/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sdevih/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [164/430] Analyzing https://github.com/legionlegion/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/legionlegion/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/legionlegion/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/DingBao-sys/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/DingBao-sys/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/DingBao-sys/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kaya3842/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [165/430] Analyzing https://github.com/hjuntan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kaya3842/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kaya3842/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hjuntan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hjuntan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [166/430] Analyzing https://github.com/ChrisHo1341/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChrisHo1341/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChrisHo1341/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jerome-j/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/legionlegion/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/legionlegion/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Hibeom0929/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NeoHW/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Hibeom0929/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Hibeom0929/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [92/430] Analyzing https://github.com/tamagochuuu/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NeoHW/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NeoHW/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [93/430] Analyzing https://github.com/lynnetteeee/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tamagochuuu/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tamagochuuu/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lynnetteeee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lynnetteeee/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AwJoey/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ZhiWei1010/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NusMinato/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/legionlegion/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [167/430] Analyzing https://github.com/chiaryan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jerome-j/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jerome-j/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ReflectiveObsidian/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/soons1/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AwJoey/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [168/430] Analyzing https://github.com/ZhiWei1010/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/soons1/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ReflectiveObsidian/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/evedaktyl/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/xuwen-ho/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/evedaktyl/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chiaryan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chiaryan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chewbum/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xuwen-ho/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NusMinato/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chewbum/ip.git... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chewbum/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZhiWei1010/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZhiWei1010/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChrisHo1341/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChrisHo1341/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChrisHo1341/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [169/430] Analyzing https://github.com/ReflectiveObsidian/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ReflectiveObsidian/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ReflectiveObsidian/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZhiWei1010/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hjuntan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZhiWei1010/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZhiWei1010/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [170/430] Analyzing https://github.com/NusMinato/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chiaryan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hjuntan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hjuntan/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [171/430] Analyzing https://github.com/AwJoey/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NusMinato/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NusMinato/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chiaryan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chiaryan/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AwJoey/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AwJoey/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ReflectiveObsidian/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xuwen-ho/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/evedaktyl/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chewbum/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/soons1/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanjieling0/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [172/430] Analyzing https://github.com/chewbum/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sun-ruiheng/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhikaiong2001/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bgopi23/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhikaiong2001/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bgopi23/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sun-ruiheng/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanjieling0/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ReflectiveObsidian/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ReflectiveObsidian/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [173/430] Analyzing https://github.com/soons1/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chewbum/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chewbum/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/soons1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/soons1/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/guanquann/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JukeBoxK/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JukeBoxK/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/guanquann/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/guanquann/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [94/430] Analyzing https://github.com/owenong1/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JukeBoxK/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lynnetteeee/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [95/430] Analyzing https://github.com/ronnnnnnnnn/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lynnetteeee/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lynnetteeee/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/owenong1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/owenong1/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [96/430] Analyzing https://github.com/HongRay/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ronnnnnnnnn/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ronnnnnnnnn/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tamagochuuu/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tamagochuuu/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tamagochuuu/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/HongRay/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/HongRay/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [97/430] Analyzing https://github.com/willowisp01/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/willowisp01/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/willowisp01/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/evedaktyl/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanjieling0/ip.git... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/soons1/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanjieling0/ip.git to complete... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sun-ruiheng/ip.git... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chewbum/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhikaiong2001/ip.git... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sun-ruiheng/ip.git to complete... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhikaiong2001/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/owenong1/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xuwen-ho/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bgopi23/ip.git... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/owenong1/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/owenong1/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bgopi23/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [98/430] Analyzing https://github.com/Wyrkx/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HongRay/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HongRay/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HongRay/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [99/430] Analyzing https://github.com/Benson15912/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanjieling0/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Wyrkx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Wyrkx/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dhlee03/ip.git... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ronnnnnnnnn/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Benson15912/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Benson15912/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dhlee03/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sun-ruiheng/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhikaiong2001/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ReganChoy/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LWS49/ip.git... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ronnnnnnnnn/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ReganChoy/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ronnnnnnnnn/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [100/430] Analyzing https://github.com/Alteqa/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/willowisp01/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LWS49/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/willowisp01/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Alteqa/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Alteqa/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/willowisp01/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [101/430] Analyzing https://github.com/kailinteoo/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Wyrkx/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kailinteoo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kailinteoo/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Wyrkx/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Wyrkx/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [102/430] Analyzing https://github.com/MaYuehan/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bgopi23/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChillinRage/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MaYuehan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MaYuehan/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChillinRage/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dhlee03/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ReganChoy/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Shauryan123/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Colex2000/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LWS49/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Shauryan123/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HusseinSafwan02/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HusseinSafwan02/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Colex2000/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Alteqa/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Alteqa/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Alteqa/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [103/430] Analyzing https://github.com/zhenghuil/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kailinteoo/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zhenghuil/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zhenghuil/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kailinteoo/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChillinRage/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kailinteoo/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [104/430] Analyzing https://github.com/sarjinius/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZHANGTIANYAO1/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ZHANGTIANYAO1/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sarjinius/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sarjinius/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Shauryan123/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Windofbitter/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HusseinSafwan02/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Windofbitter/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Colex2000/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/quelinxiao/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ararchch/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ararchch/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/quelinxiao/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhenghuil/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sarjinius/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhenghuil/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhenghuil/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Benson15912/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [105/430] Analyzing https://github.com/appleraincoat/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sarjinius/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sarjinius/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [106/430] Analyzing https://github.com/reetmitra/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/appleraincoat/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/appleraincoat/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Benson15912/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Benson15912/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [107/430] Analyzing https://github.com/taeewonnn/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/reetmitra/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/reetmitra/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZHANGTIANYAO1/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/taeewonnn/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/taeewonnn/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KiatLun/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KiatLun/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ararchch/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/quelinxiao/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Windofbitter/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Bandov/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/peienlim/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Bandov/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zoebelle-pang/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/peienlim/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zoebelle-pang/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MaYuehan/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/MaYuehan/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/MaYuehan/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [108/430] Analyzing https://github.com/H4mes/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/H4mes/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/H4mes/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/reetmitra/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/appleraincoat/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/reetmitra/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/reetmitra/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [109/430] Analyzing https://github.com/jamessinmaojun/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/appleraincoat/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/appleraincoat/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [110/430] Analyzing https://github.com/ChocoRagdoll/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jamessinmaojun/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jamessinmaojun/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/taeewonnn/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/H4mes/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChocoRagdoll/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChocoRagdoll/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/taeewonnn/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/H4mes/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/taeewonnn/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/H4mes/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [111/430] Analyzing https://github.com/ondretann/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [112/430] Analyzing https://github.com/ashleygoh1/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/peienlim/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ondretann/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ondretann/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tayziyi/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ashleygoh1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ashleygoh1/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tayziyi/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zoebelle-pang/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/R-Laksh/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/R-Laksh/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Bandov/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Cedricaca/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KiatLun/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Cedricaca/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/matthewken19/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/matthewken19/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tayziyi/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/R-Laksh/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/taufiq/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gingerbreaf/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/taufiq/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/matthewken19/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gingerbreaf/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Cedricaca/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Zack-Tay/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Zack-Tay/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ondretann/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/darryl-chan/ip.git... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChocoRagdoll/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ondretann/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ondretann/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/darryl-chan/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [113/430] Analyzing https://github.com/justincred/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChocoRagdoll/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChocoRagdoll/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [114/430] Analyzing https://github.com/JerryWang0000/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/justincred/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/justincred/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JerryWang0000/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JerryWang0000/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jamessinmaojun/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jamessinmaojun/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jamessinmaojun/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [115/430] Analyzing https://github.com/julia-cp/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/julia-cp/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/julia-cp/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/taufiq/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gingerbreaf/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JustWeiHao/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JustWeiHao/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/brennalaurentan/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Zack-Tay/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JerryWang0000/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/brennalaurentan/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/0-yibai/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/darryl-chan/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/0-yibai/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/justincred/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JerryWang0000/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JerryWang0000/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [116/430] Analyzing https://github.com/Tanzhiheng26/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Apzure/ip.git... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ashleygoh1/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Apzure/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/justincred/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/justincred/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [117/430] Analyzing https://github.com/BryanL2303/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ashleygoh1/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ashleygoh1/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Tanzhiheng26/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Tanzhiheng26/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [118/430] Analyzing https://github.com/sethteo/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/BryanL2303/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/BryanL2303/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sethteo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sethteo/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/julia-cp/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/julia-cp/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/julia-cp/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [119/430] Analyzing https://github.com/Joelwang22/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Joelwang22/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Joelwang22/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JustWeiHao/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jxunze/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/brennalaurentan/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/0-yibai/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jxunze/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Apzure/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alphajae11/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yespiggy/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alphajae11/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/raysonchia/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/raysonchia/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yespiggy/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Tanzhiheng26/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Tanzhiheng26/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Tanzhiheng26/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [120/430] Analyzing https://github.com/SimKianSeng/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yespiggy/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jxunze/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bachletuankhai/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/joelgoh1/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/raysonchia/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alphajae11/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bachletuankhai/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Joelwang22/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/joelgoh1/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YuZizhen/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SherwynNg/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SimKianSeng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SimKianSeng/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YuZizhen/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Joelwang22/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Joelwang22/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SherwynNg/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [121/430] Analyzing https://github.com/ibnu2651/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sethteo/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ibnu2651/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ibnu2651/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sethteo/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sethteo/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/BryanL2303/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [122/430] Analyzing https://github.com/guohuang88/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/BryanL2303/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/guohuang88/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/guohuang88/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/BryanL2303/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [123/430] Analyzing https://github.com/rizkidelta/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bachletuankhai/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kab-dot/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rizkidelta/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rizkidelta/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/joelgoh1/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kab-dot/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YuZizhen/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/belligerentbeagle/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ongzhili/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/belligerentbeagle/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ongzhili/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SherwynNg/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Dethada/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Dethada/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SimKianSeng/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SimKianSeng/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SimKianSeng/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [124/430] Analyzing https://github.com/Murugan-Maniish/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rizkidelta/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ongzhili/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Murugan-Maniish/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Murugan-Maniish/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ibnu2651/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yuhinarita/ip.git... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rizkidelta/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kab-dot/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rizkidelta/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/belligerentbeagle/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [125/430] Analyzing https://github.com/AjayArvind2207/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vnnamng/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yuhinarita/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DominicFuMJ/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vnnamng/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ibnu2651/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ibnu2651/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AjayArvind2207/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AjayArvind2207/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [126/430] Analyzing https://github.com/Teee728/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Dethada/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DominicFuMJ/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Anant1902/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Anant1902/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Teee728/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Teee728/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/guohuang88/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AjayArvind2207/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/guohuang88/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AjayArvind2207/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/guohuang88/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AjayArvind2207/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [127/430] Analyzing https://github.com/dillontkh/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [128/430] Analyzing https://github.com/shaunlxw/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shaunlxw/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shaunlxw/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuhinarita/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dillontkh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dillontkh/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/redcolorbicycle/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vnnamng/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/redcolorbicycle/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yorklim/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yorklim/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DominicFuMJ/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Wongqingyee/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Wongqingyee/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Anant1902/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Murugan-Maniish/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YowSiaoKang/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YowSiaoKang/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Murugan-Maniish/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Murugan-Maniish/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [129/430] Analyzing https://github.com/jmsandiegoo/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jmsandiegoo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jmsandiegoo/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Teee728/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Teee728/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Teee728/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [130/430] Analyzing https://github.com/ryanlimdx/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ryanlimdx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ryanlimdx/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/redcolorbicycle/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LargeCrowd/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yorklim/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LargeCrowd/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Wongqingyee/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/irwynliong/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jannaleong/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YowSiaoKang/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jannaleong/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kaiyi27/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/irwynliong/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kaiyi27/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shaunlxw/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shaunlxw/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ryanlimdx/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shaunlxw/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [131/430] Analyzing https://github.com/chiralcentre/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ryanlimdx/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ryanlimdx/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [132/430] Analyzing https://github.com/KhoonSun47/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chiralcentre/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chiralcentre/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LargeCrowd/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KhoonSun47/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KhoonSun47/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/irwynliong/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aureliony/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/azumieflare/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jannaleong/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/azumieflare/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aureliony/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/qinboan/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kaiyi27/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dillontkh/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tengcharmaine/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/qinboan/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tengcharmaine/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dillontkh/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dillontkh/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [133/430] Analyzing https://github.com/0liverkong/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jmsandiegoo/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/0liverkong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/0liverkong/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jmsandiegoo/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jmsandiegoo/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [134/430] Analyzing https://github.com/ThatGirlJam/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ThatGirlJam/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ThatGirlJam/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aureliony/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/qinboan/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/moguries/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Joshy837/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/azumieflare/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/moguries/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Joshy837/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tengcharmaine/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chengjunyuan/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chengjunyuan/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChrysanthemumT/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChrysanthemumT/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KhoonSun47/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KhoonSun47/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KhoonSun47/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chiralcentre/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [135/430] Analyzing https://github.com/xuelinglow/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chiralcentre/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chiralcentre/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [136/430] Analyzing https://github.com/yashpola/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xuelinglow/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xuelinglow/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ThatGirlJam/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yashpola/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yashpola/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ThatGirlJam/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ThatGirlJam/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [137/430] Analyzing https://github.com/breezetall/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Joshy837/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/moguries/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chengjunyuan/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/breezetall/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/breezetall/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/camille-readbean/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChrysanthemumT/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dabzpengu/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cleowenxuan/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/camille-readbean/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cleowenxuan/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dabzpengu/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ziiqii/ip.git... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/0liverkong/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ziiqii/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/0liverkong/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/0liverkong/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [138/430] Analyzing https://github.com/JiaXinEu/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JiaXinEu/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JiaXinEu/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/camille-readbean/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dabzpengu/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rertyy/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rertyy/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xiaorui-ui/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cleowenxuan/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xiaorui-ui/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TarinPairor/ip.git... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xuelinglow/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/breezetall/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TarinPairor/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ziiqii/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/amanzainal/ip.git... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yashpola/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xuelinglow/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/breezetall/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xuelinglow/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/breezetall/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [139/430] Analyzing https://github.com/yisiox/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [140/430] Analyzing https://github.com/maiyasaliha/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/amanzainal/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yashpola/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yashpola/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yisiox/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yisiox/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [141/430] Analyzing https://github.com/triciiaaa/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/maiyasaliha/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/maiyasaliha/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/triciiaaa/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/triciiaaa/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xiaorui-ui/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TarinPairor/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/minwaiphyo/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Javiery3889/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/minwaiphyo/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Javiery3889/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/triciiaaa/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/amanzainal/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jimseah-0116/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jimseah-0116/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/triciiaaa/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/triciiaaa/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [142/430] Analyzing https://github.com/Jolonauh/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rertyy/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jolonauh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jolonauh/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/VatsalVitosh/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/VatsalVitosh/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JiaXinEu/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/maiyasaliha/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/minwaiphyo/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/maiyasaliha/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JiaXinEu/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/maiyasaliha/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JiaXinEu/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [143/430] Analyzing https://github.com/alvinnzz/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [144/430] Analyzing https://github.com/wolffe88/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/narwhalsilent/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/narwhalsilent/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wolffe88/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wolffe88/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Javiery3889/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChuaZiLong/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alvinnzz/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alvinnzz/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChuaZiLong/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jimseah-0116/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Lin-Shuang-Shuang/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Lin-Shuang-Shuang/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yisiox/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/VatsalVitosh/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yisiox/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/whelan-low/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yisiox/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [145/430] Analyzing https://github.com/tanyunchao/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/whelan-low/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanyunchao/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanyunchao/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/narwhalsilent/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ThitipatC/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ThitipatC/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jolonauh/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChuaZiLong/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Lin-Shuang-Shuang/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YuvBindal/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jolonauh/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jolonauh/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [146/430] Analyzing https://github.com/tsulim/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YuvBindal/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/doyelee0313/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/doyelee0313/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tsulim/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tsulim/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wolffe88/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alvinnzz/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/whelan-low/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/taniatsq/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wolffe88/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/taniatsq/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wolffe88/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [147/430] Analyzing https://github.com/modembcc/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alvinnzz/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alvinnzz/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [148/430] Analyzing https://github.com/menatahari/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/modembcc/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/modembcc/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanyunchao/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ThitipatC/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/menatahari/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/menatahari/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Rikko1204/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanyunchao/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanyunchao/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [149/430] Analyzing https://github.com/yashma-sonara/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YuvBindal/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Rikko1204/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/doyelee0313/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Yskie/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yashma-sonara/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Yskie/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yashma-sonara/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Fidget-Spinner/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Fidget-Spinner/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/taniatsq/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/FangRuoqing/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/FangRuoqing/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Rikko1204/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhuuyicheng/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/menatahari/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhuuyicheng/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Yskie/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/smolegz/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/menatahari/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Fidget-Spinner/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/menatahari/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/smolegz/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [150/430] Analyzing https://github.com/Hwww23/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jinhanfromNUS/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jinhanfromNUS/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Hwww23/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Hwww23/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yashma-sonara/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/FangRuoqing/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tsulim/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/0nesheep/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/0nesheep/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yashma-sonara/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yashma-sonara/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [151/430] Analyzing https://github.com/rickkoh/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tsulim/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tsulim/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [152/430] Analyzing https://github.com/Zer0Legion/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rickkoh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rickkoh/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/modembcc/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Zer0Legion/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Zer0Legion/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhuuyicheng/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Hwww23/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/modembcc/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/modembcc/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/smolegz/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jinhanfromNUS/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AdityaB4/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [153/430] Analyzing https://github.com/maze508/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HM33-Stu/ip.git... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Hwww23/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Hwww23/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [154/430] Analyzing https://github.com/eunrcn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HM33-Stu/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AdityaB4/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yap-zong-xin/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yap-zong-xin/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/maze508/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/maze508/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/eunrcn/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/eunrcn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/0nesheep/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jocelyn-soh/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jocelyn-soh/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HM33-Stu/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/felixchanyy/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AdityaB4/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/felixchanyy/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yap-zong-xin/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/donwong2308/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/minreiseah/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/donwong2308/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/minreiseah/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jocelyn-soh/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Pluiexo/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Pluiexo/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/eunrcn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/eunrcn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/eunrcn/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rickkoh/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [155/430] Analyzing https://github.com/ziyang27/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rickkoh/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rickkoh/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [156/430] Analyzing https://github.com/miffi/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ziyang27/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ziyang27/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/maze508/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Zer0Legion/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/miffi/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/miffi/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/maze508/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/maze508/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Zer0Legion/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [157/430] Analyzing https://github.com/KSSWSept20/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/felixchanyy/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zer0Legion/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [158/430] Analyzing https://github.com/kwuunnn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Emberlynn-Loo/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/minreiseah/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/donwong2308/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Emberlynn-Loo/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DhiraPT/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/howen02/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KSSWSept20/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KSSWSept20/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/howen02/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DhiraPT/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Pluiexo/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kwuunnn/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kwuunnn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shunjieee/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shunjieee/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Emberlynn-Loo/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nigel27022001/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nigel27022001/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/howen02/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DhiraPT/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shayaansultan/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mahadhir247/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mahadhir247/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shayaansultan/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shunjieee/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GiselleTan/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GiselleTan/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/miffi/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KSSWSept20/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/miffi/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/miffi/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [159/430] Analyzing https://github.com/zengzihui/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KSSWSept20/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KSSWSept20/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [160/430] Analyzing https://github.com/DingBao-sys/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zengzihui/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zengzihui/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/DingBao-sys/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/DingBao-sys/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nigel27022001/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lihaoquan/ip.git... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ziyang27/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lihaoquan/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ziyang27/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ziyang27/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mahadhir247/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [161/430] Analyzing https://github.com/sdevih/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shayaansultan/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kwuunnn/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/PallonCX/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yadunut/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GiselleTan/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PallonCX/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yadunut/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yiwern5/ip.git... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kwuunnn/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sdevih/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sdevih/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kwuunnn/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yiwern5/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [162/430] Analyzing https://github.com/Jerome-j/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zengzihui/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jerome-j/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jerome-j/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zengzihui/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zengzihui/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [163/430] Analyzing https://github.com/Kaya3842/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Kaya3842/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Kaya3842/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lihaoquan/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/saiutkarsh33/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/saiutkarsh33/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PallonCX/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yadunut/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Dexter-Wong/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Dexter-Wong/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/h4ow3i/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/h4ow3i/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sdevih/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sdevih/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sdevih/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [164/430] Analyzing https://github.com/legionlegion/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/saiutkarsh33/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/legionlegion/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/legionlegion/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Derekljh/ip.git... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/DingBao-sys/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Dexter-Wong/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Derekljh/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kaya3842/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jayne1010/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/h4ow3i/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jayne1010/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/officialchengyud/ip.git... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kaya3842/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kaya3842/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [165/430] Analyzing https://github.com/chiaryan/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/DingBao-sys/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/DingBao-sys/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yiwern5/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [166/430] Analyzing https://github.com/ChrisHo1341/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/officialchengyud/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chenyixin0/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chenyixin0/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChrisHo1341/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChrisHo1341/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chiaryan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chiaryan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChrisHo1341/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChrisHo1341/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChrisHo1341/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [167/430] Analyzing https://github.com/hjuntan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hjuntan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hjuntan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jerome-j/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/legionlegion/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/legionlegion/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/legionlegion/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [168/430] Analyzing https://github.com/AwJoey/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/officialchengyud/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jerome-j/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jerome-j/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shavonneg/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [169/430] Analyzing https://github.com/ZhiWei1010/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Derekljh/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shavonneg/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chenyixin0/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/caitlyntang/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/caitlyntang/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AwJoey/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AwJoey/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/getsquared/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/getsquared/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jayne1010/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZhiWei1010/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZhiWei1010/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ashleyy2444/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ashleyy2444/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chiaryan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chiaryan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chiaryan/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [170/430] Analyzing https://github.com/ReflectiveObsidian/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ReflectiveObsidian/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ReflectiveObsidian/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shavonneg/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhekaiii/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/caitlyntang/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/getsquared/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhekaiii/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/johnyoozhengxian/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/meenulekha/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/meenulekha/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AwJoey/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/johnyoozhengxian/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ashleyy2444/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Li-Zizhen/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Li-Zizhen/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AwJoey/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AwJoey/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [174/430] Analyzing https://github.com/evedaktyl/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [171/430] Analyzing https://github.com/NusMinato/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZhiWei1010/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NusMinato/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NusMinato/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZhiWei1010/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZhiWei1010/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hjuntan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [172/430] Analyzing https://github.com/evedaktyl/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hjuntan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hjuntan/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/evedaktyl/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/evedaktyl/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [173/430] Analyzing https://github.com/soons1/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/soons1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/soons1/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhekaiii/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SimHanKiong/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SimHanKiong/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/johnyoozhengxian/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/meenulekha/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JuliaPoo/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JuliaPoo/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Li-Zizhen/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vannykin/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vannykin/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/teojunda/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/teojunda/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ReflectiveObsidian/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ReflectiveObsidian/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ReflectiveObsidian/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [174/430] Analyzing https://github.com/chewbum/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chewbum/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chewbum/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/evedaktyl/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/NusMinato/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SimHanKiong/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/soons1/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ko-Khan/ip.git... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NusMinato/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NusMinato/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos INFO: [175/430] Analyzing https://github.com/xuwen-ho/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/evedaktyl/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/evedaktyl/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [176/430] Analyzing https://github.com/tanjieling0/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ko-Khan/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/teojunda/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vannykin/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xuwen-ho/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xuwen-ho/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chewbum/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/soons1/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chewbum/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chewbum/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jyztintan/ip.git... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/soons1/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jyztintan/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/soons1/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sun-ruiheng/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanjieling0/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bgopi23/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhikaiong2001/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [176/430] Analyzing https://github.com/sun-ruiheng/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dhlee03/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [177/430] Analyzing https://github.com/bgopi23/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ReganChoy/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dhlee03/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LWS49/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChillinRage/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LWS49/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ReganChoy/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanjieling0/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanjieling0/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [177/430] Analyzing https://github.com/zhikaiong2001/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JuliaPoo/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jasperng-nus/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/delishad21/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/delishad21/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jasperng-nus/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zhikaiong2001/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zhikaiong2001/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ko-Khan/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/IamZhenHong/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/IamZhenHong/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xuwen-ho/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jyztintan/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jasperng-nus/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xuwen-ho/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xuwen-ho/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [178/430] Analyzing https://github.com/sun-ruiheng/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shamesjen/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ma-Yirui/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shamesjen/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/delishad21/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ma-Yirui/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/timothysashimi/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sun-ruiheng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sun-ruiheng/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChillinRage/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/timothysashimi/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chewbum/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chewbum/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chewbum/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [179/430] Analyzing https://github.com/bgopi23/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/bgopi23/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/bgopi23/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/evedaktyl/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/evedaktyl/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/evedaktyl/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [178/430] Analyzing https://github.com/zhikaiong2001/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xuwen-ho/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xuwen-ho/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zhikaiong2001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zhikaiong2001/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xuwen-ho/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [179/430] Analyzing https://github.com/tanjieling0/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanjieling0/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanjieling0/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanjieling0/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanjieling0/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanjieling0/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [180/430] Analyzing https://github.com/ReganChoy/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/IamZhenHong/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Xilef121/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Xilef121/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ReganChoy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ReganChoy/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhikaiong2001/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shamesjen/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SamuelZero1/ip.git... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sun-ruiheng/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SamuelZero1/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ma-Yirui/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhikaiong2001/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhikaiong2001/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sun-ruiheng/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sun-ruiheng/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bgopi23/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bgopi23/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bgopi23/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dhlee03/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Shauryan123/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [180/430] Analyzing https://github.com/dhlee03/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LWS49/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Shauryan123/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ReganChoy/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChillinRage/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [181/430] Analyzing https://github.com/LWS49/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Colex2000/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [181/430] Analyzing https://github.com/dhlee03/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [182/430] Analyzing https://github.com/LWS49/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/swtan346/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/timothysashimi/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LWS49/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dhlee03/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dhlee03/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Colex2000/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HusseinSafwan02/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZHANGTIANYAO1/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ZHANGTIANYAO1/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LWS49/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LWS49/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HusseinSafwan02/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhikaiong2001/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhikaiong2001/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhikaiong2001/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [182/430] Analyzing https://github.com/ReganChoy/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanjieling0/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ReganChoy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ReganChoy/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanjieling0/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/faaheem13/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/swtan346/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/faaheem13/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Xilef121/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bgopi23/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChenXy128/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChenXy128/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LWS49/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dhlee03/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanjieling0/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bgopi23/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bgopi23/ip.git (master) completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [183/430] Analyzing https://github.com/ChillinRage/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dhlee03/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dhlee03/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChillinRage/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChillinRage/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LWS49/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [184/430] Analyzing https://github.com/Shauryan123/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LWS49/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LWS49/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [185/430] Analyzing https://github.com/Colex2000/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Shauryan123/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Shauryan123/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SamuelZero1/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChillinRage/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChillinRage/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Colex2000/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Colex2000/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Arixeyeion/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Arixeyeion/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/faaheem13/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/swtan346/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Darylgolden/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tankh99/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Darylgolden/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tankh99/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ReganChoy/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ReganChoy/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ReganChoy/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChillinRage/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChillinRage/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChillinRage/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HusseinSafwan02/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [184/430] Analyzing https://github.com/HusseinSafwan02/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Windofbitter/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Windofbitter/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [186/430] Analyzing https://github.com/HusseinSafwan02/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HusseinSafwan02/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HusseinSafwan02/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Colex2000/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZHANGTIANYAO1/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [185/430] Analyzing https://github.com/ZHANGTIANYAO1/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/quelinxiao/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Shauryan123/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ararchch/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [186/430] Analyzing https://github.com/Colex2000/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [187/430] Analyzing https://github.com/Shauryan123/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KiatLun/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/quelinxiao/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZHANGTIANYAO1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZHANGTIANYAO1/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ararchch/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KiatLun/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Shauryan123/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Shauryan123/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Colex2000/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Colex2000/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChenXy128/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Tsenrae/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Tsenrae/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Darylgolden/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/starsia/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/starsia/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HusseinSafwan02/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Arixeyeion/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Colex2000/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChillinRage/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HusseinSafwan02/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HusseinSafwan02/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Colex2000/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [187/430] Analyzing https://github.com/ZHANGTIANYAO1/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hjungwoo01/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hjungwoo01/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Colex2000/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Colex2000/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Windofbitter/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Bandov/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [188/430] Analyzing https://github.com/Windofbitter/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Bandov/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Shauryan123/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/quelinxiao/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChillinRage/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChillinRage/ip.git (master) completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [188/430] Analyzing https://github.com/ararchch/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [189/430] Analyzing https://github.com/quelinxiao/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/peienlim/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Windofbitter/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Windofbitter/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/peienlim/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Shauryan123/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZHANGTIANYAO1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZHANGTIANYAO1/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/quelinxiao/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/quelinxiao/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Shauryan123/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KiatLun/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ararchch/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zoebelle-pang/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [190/430] Analyzing https://github.com/KiatLun/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZHANGTIANYAO1/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zoebelle-pang/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tayziyi/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KiatLun/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KiatLun/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZHANGTIANYAO1/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tayziyi/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZHANGTIANYAO1/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [191/430] Analyzing https://github.com/ararchch/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/quelinxiao/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Tsenrae/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ararchch/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ararchch/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YuSoonZ/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tankh99/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YuSoonZ/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Darkarche3/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Darkarche3/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Shauryan123/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Shauryan123/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Shauryan123/ip.git (master) completed! +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/quelinxiao/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [190/430] Analyzing https://github.com/Windofbitter/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/starsia/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Vision-2000/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Vision-2000/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/quelinxiao/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/quelinxiao/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KiatLun/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KiatLun/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KiatLun/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Windofbitter/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Windofbitter/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [191/430] Analyzing https://github.com/peienlim/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hjungwoo01/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/peienlim/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/peienlim/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chiageng/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chiageng/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Darkarche3/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YuSoonZ/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/logical-1985516/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/logical-1985516/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ananya21/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ananya21/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Vision-2000/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/purivirakarin/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/purivirakarin/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ararchch/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/peienlim/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ararchch/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/R-Laksh/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [192/430] Analyzing https://github.com/peienlim/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ararchch/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/R-Laksh/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Bandov/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chiageng/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [192/430] Analyzing https://github.com/zoebelle-pang/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/joenus/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/joenus/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zoebelle-pang/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zoebelle-pang/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/peienlim/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/peienlim/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ananya21/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/logical-1985516/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/peienlim/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jessicawyz/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [193/430] Analyzing https://github.com/Bandov/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Cedricaca/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/peienlim/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/peienlim/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Cedricaca/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/casaarlai/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jessicawyz/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/casaarlai/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZHANGTIANYAO1/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Bandov/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Bandov/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zoebelle-pang/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/matthewken19/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [194/430] Analyzing https://github.com/zoebelle-pang/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tayziyi/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/matthewken19/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/taufiq/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/taufiq/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zoebelle-pang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zoebelle-pang/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Windofbitter/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Windofbitter/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Windofbitter/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [195/430] Analyzing https://github.com/tayziyi/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/zoebelle-pang/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZHANGTIANYAO1/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zoebelle-pang/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zoebelle-pang/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZHANGTIANYAO1/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [194/430] Analyzing https://github.com/KiatLun/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [195/430] Analyzing https://github.com/R-Laksh/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KiatLun/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/R-Laksh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/R-Laksh/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KiatLun/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/purivirakarin/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ryo-Seah/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ryo-Seah/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/joenus/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jeremiahlzz/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jeremiahlzz/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jessicawyz/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/macareonie/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/macareonie/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/casaarlai/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chin-herng/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chin-herng/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KiatLun/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KiatLun/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KiatLun/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [196/430] Analyzing https://github.com/tayziyi/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tayziyi/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tayziyi/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/peienlim/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/peienlim/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/peienlim/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tayziyi/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ryo-Seah/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gowthaman-01/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jeremiahlzz/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gowthaman-01/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Joseph31416/ip.git... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Windofbitter/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Joseph31416/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Bandov/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tayziyi/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tayziyi/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/R-Laksh/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Windofbitter/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Windofbitter/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Bandov/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Bandov/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/R-Laksh/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [196/430] Analyzing https://github.com/R-Laksh/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gingerbreaf/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gingerbreaf/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/R-Laksh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/R-Laksh/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Cedricaca/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [197/430] Analyzing https://github.com/Cedricaca/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Zack-Tay/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Zack-Tay/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [197/430] Analyzing https://github.com/matthewken19/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [198/430] Analyzing https://github.com/Cedricaca/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tayziyi/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/R-Laksh/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/R-Laksh/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [199/430] Analyzing https://github.com/taufiq/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/matthewken19/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/matthewken19/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Cedricaca/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Cedricaca/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/matthewken19/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/taufiq/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [198/430] Analyzing https://github.com/matthewken19/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/darryl-chan/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [199/430] Analyzing https://github.com/taufiq/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JustWeiHao/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/darryl-chan/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JustWeiHao/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/R-Laksh/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tayziyi/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tayziyi/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/macareonie/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chin-herng/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [200/430] Analyzing https://github.com/gingerbreaf/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/taufiq/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/taufiq/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/matthewken19/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/matthewken19/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/R-Laksh/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/R-Laksh/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/radeon2525/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ejnan/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/radeon2525/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ejnan/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gingerbreaf/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gingerbreaf/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gowthaman-01/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jskimdev/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jskimdev/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Joseph31416/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Chiarena/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Chiarena/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Cedricaca/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/radeon2525/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Cedricaca/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ejnan/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Cedricaca/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gingerbreaf/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [200/430] Analyzing https://github.com/gingerbreaf/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/brennalaurentan/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/brennalaurentan/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/taufiq/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gingerbreaf/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gingerbreaf/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [201/430] Analyzing https://github.com/Zack-Tay/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chonghaoen/ip.git... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/matthewken19/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/taufiq/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/taufiq/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/CJerrong/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/CJerrong/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chonghaoen/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/matthewken19/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/matthewken19/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Zack-Tay/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [201/430] Analyzing https://github.com/Zack-Tay/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/0-yibai/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/0-yibai/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Zack-Tay/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Zack-Tay/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/darryl-chan/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [202/430] Analyzing https://github.com/darryl-chan/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Apzure/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Apzure/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/darryl-chan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/darryl-chan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JustWeiHao/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/taufiq/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/taufiq/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/taufiq/ip.git (master) completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jskimdev/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/gingerbreaf/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [203/430] Analyzing https://github.com/JustWeiHao/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jxunze/ip.git... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Zack-Tay/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jxunze/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Chiarena/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/qinxutan/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/billyhoce/ip.git... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/gingerbreaf/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/billyhoce/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/gingerbreaf/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/qinxutan/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JustWeiHao/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JustWeiHao/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Zack-Tay/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zack-Tay/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/brennalaurentan/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [204/430] Analyzing https://github.com/brennalaurentan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alphajae11/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alphajae11/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/brennalaurentan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/brennalaurentan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/0-yibai/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CJerrong/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chonghaoen/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/4llysa/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/4llysa/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TopKec/ip.git... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Zack-Tay/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TopKec/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Zack-Tay/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zack-Tay/ip.git (master) completed! +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [205/430] Analyzing https://github.com/0-yibai/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yespiggy/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yespiggy/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/0-yibai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/0-yibai/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JustWeiHao/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/billyhoce/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tahsinhasem/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tahsinhasem/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/qinxutan/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/MarcusGitty/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/MarcusGitty/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/4llysa/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TopKec/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shawnnlimm/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/huekoh/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/huekoh/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shawnnlimm/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/brennalaurentan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JustWeiHao/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/brennalaurentan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/brennalaurentan/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JustWeiHao/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jxunze/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tahsinhasem/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [206/430] Analyzing https://github.com/Apzure/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JonChong98/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JonChong98/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Apzure/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Apzure/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JustWeiHao/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/darryl-chan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/raysonchia/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [206/430] Analyzing https://github.com/jxunze/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/raysonchia/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jxunze/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jxunze/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/MarcusGitty/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JustWeiHao/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/STELLA-LYE/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JustWeiHao/ip.git (master) completed! +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [207/430] Analyzing https://github.com/jxunze/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/huekoh/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shawnnlimm/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/STELLA-LYE/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nyankoclaws/ip.git... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/darryl-chan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/darryl-chan/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [208/430] Analyzing https://github.com/yespiggy/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/meowwtama/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nyankoclaws/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jxunze/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jxunze/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/meowwtama/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/0-yibai/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yespiggy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yespiggy/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JonChong98/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/0-yibai/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KohGuanZeh/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/0-yibai/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alphajae11/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [207/430] Analyzing https://github.com/alphajae11/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bachletuankhai/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bachletuankhai/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Apzure/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [208/430] Analyzing https://github.com/Apzure/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/joelgoh1/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [209/430] Analyzing https://github.com/alphajae11/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KohGuanZeh/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/alphajae11/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/alphajae11/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/joelgoh1/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yespiggy/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Apzure/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Apzure/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [209/430] Analyzing https://github.com/yespiggy/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YuZizhen/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YuZizhen/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yespiggy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yespiggy/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jxunze/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jxunze/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/raysonchia/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jxunze/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SherwynNg/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Apzure/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Apzure/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Apzure/ip.git (master) completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/STELLA-LYE/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [210/430] Analyzing https://github.com/raysonchia/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SherwynNg/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nuyer/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nyankoclaws/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nuyer/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SeaHogs/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/meowwtama/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SeaHogs/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/raysonchia/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/raysonchia/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/S-Aishvarya/ip.git... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yespiggy/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/S-Aishvarya/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yespiggy/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yespiggy/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Apzure/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bachletuankhai/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kab-dot/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KohGuanZeh/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [211/430] Analyzing https://github.com/bachletuankhai/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kab-dot/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alphajae11/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Apzure/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Apzure/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tejas-1405/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tejas-1405/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/bachletuankhai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/bachletuankhai/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jxunze/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jxunze/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jxunze/ip.git (master) completed! +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [212/430] Analyzing https://github.com/joelgoh1/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alphajae11/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nuyer/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/alphajae11/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/youdonnnn/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/alphajae11/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/joelgoh1/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [212/430] Analyzing https://github.com/joelgoh1/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/belligerentbeagle/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/belligerentbeagle/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YuZizhen/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [213/430] Analyzing https://github.com/YuZizhen/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ongzhili/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/joelgoh1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/joelgoh1/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ongzhili/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [213/430] Analyzing https://github.com/YuZizhen/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/youdonnnn/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SeaHogs/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tcjazwei/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YuZizhen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YuZizhen/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/S-Aishvarya/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tcjazwei/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tejas-1405/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jieqiboh/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jieqiboh/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wongkj12/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wongkj12/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +WARNING: Exception met while trying to clone the repo "tcjazwei/ip[master]", will skip this repo. +reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/tcjazwei/ip.git' 'repos/tcjazwei_ip/ip_bare' on path . : +Cloning into bare repository 'repos/tcjazwei_ip/ip_bare'... +fatal: could not read Username for 'https://github.com': No such device or address + + at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) + at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) + at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) + at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) + at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at java.base/java.lang.Thread.run(Thread.java:829) + +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GERARDJM018/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GERARDJM018/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/raysonchia/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/youdonnnn/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/blaukc/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/blaukc/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/raysonchia/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/raysonchia/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [214/430] Analyzing https://github.com/SherwynNg/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/YuZizhen/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jieqiboh/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wongkj12/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/YuZizhen/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/YuZizhen/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bachletuankhai/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SherwynNg/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SherwynNg/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [215/430] Analyzing https://github.com/ongzhili/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tohlh/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hiivan/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hiivan/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ongzhili/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ongzhili/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tohlh/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GERARDJM018/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/darkvoid32/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/darkvoid32/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/blaukc/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yapxuanxuan/ip.git... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/joelgoh1/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yapxuanxuan/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bachletuankhai/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/joelgoh1/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bachletuankhai/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/joelgoh1/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bachletuankhai/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [216/430] Analyzing https://github.com/kab-dot/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/bachletuankhai/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kab-dot/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/belligerentbeagle/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Dethada/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [214/430] Analyzing https://github.com/kab-dot/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Dethada/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [215/430] Analyzing https://github.com/belligerentbeagle/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yuhinarita/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yuhinarita/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [217/430] Analyzing https://github.com/belligerentbeagle/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tohlh/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kab-dot/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kab-dot/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/belligerentbeagle/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/belligerentbeagle/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ongzhili/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [216/430] Analyzing https://github.com/ongzhili/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vnnamng/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SherwynNg/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [217/430] Analyzing https://github.com/SherwynNg/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DominicFuMJ/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vnnamng/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DominicFuMJ/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SherwynNg/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SherwynNg/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ongzhili/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ongzhili/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kab-dot/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kab-dot/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kab-dot/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/belligerentbeagle/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/belligerentbeagle/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/belligerentbeagle/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanjiajiajun/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanjiajiajun/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/darkvoid32/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Greg-Tan/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hiivan/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kervyntan/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Greg-Tan/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kervyntan/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SherwynNg/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ongzhili/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yapxuanxuan/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SherwynNg/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SherwynNg/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AndrewOng2066/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [218/430] Analyzing https://github.com/Dethada/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ongzhili/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AndrewOng2066/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ongzhili/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuhinarita/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Dethada/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Dethada/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ongzhili/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [218/430] Analyzing https://github.com/yuhinarita/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Anant1902/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Anant1902/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [219/430] Analyzing https://github.com/yuhinarita/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yuhinarita/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yuhinarita/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Dethada/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [219/430] Analyzing https://github.com/Dethada/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/redcolorbicycle/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/redcolorbicycle/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vnnamng/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kab-dot/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kab-dot/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kab-dot/ip.git (master) completed! +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [220/430] Analyzing https://github.com/vnnamng/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yorklim/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yorklim/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Dethada/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Dethada/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanjiajiajun/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Greg-Tan/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/g-tejas/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RyanNgWH/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kervyntan/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RyanNgWH/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/vnnamng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/vnnamng/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DominicFuMJ/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/g-tejas/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yeoshuheng/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yeoshuheng/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/belligerentbeagle/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AndrewOng2066/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jonpwk/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jonpwk/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yuhinarita/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/belligerentbeagle/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/belligerentbeagle/ip.git (master) completed! +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [221/430] Analyzing https://github.com/DominicFuMJ/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Wongqingyee/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Wongqingyee/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yuhinarita/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yuhinarita/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [222/430] Analyzing https://github.com/Anant1902/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/DominicFuMJ/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/DominicFuMJ/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Anant1902/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Anant1902/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/g-tejas/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xinen26/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RyanNgWH/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xinen26/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gerteck/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gerteck/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yeoshuheng/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jonpwk/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/drustanyjt/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/angsongyee/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/angsongyee/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/drustanyjt/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/DominicFuMJ/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/DominicFuMJ/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/DominicFuMJ/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/vnnamng/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/vnnamng/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/vnnamng/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Anant1902/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [222/430] Analyzing https://github.com/Anant1902/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YowSiaoKang/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YowSiaoKang/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [223/430] Analyzing https://github.com/redcolorbicycle/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Dethada/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Anant1902/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Anant1902/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/redcolorbicycle/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/redcolorbicycle/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Dethada/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Dethada/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yorklim/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LargeCrowd/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/redcolorbicycle/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [223/430] Analyzing https://github.com/yorklim/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LargeCrowd/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [224/430] Analyzing https://github.com/redcolorbicycle/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/irwynliong/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Wongqingyee/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/irwynliong/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/vnnamng/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [224/430] Analyzing https://github.com/yorklim/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Anant1902/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/vnnamng/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/vnnamng/ip.git (master) completed! +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [225/430] Analyzing https://github.com/Wongqingyee/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jannaleong/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yorklim/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yorklim/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jannaleong/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/redcolorbicycle/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/redcolorbicycle/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Wongqingyee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Wongqingyee/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Anant1902/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gerteck/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xinen26/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Anant1902/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Anant1902/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/redcolorbicycle/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/redcolorbicycle/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/redcolorbicycle/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YowSiaoKang/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alfaloo/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [226/430] Analyzing https://github.com/YowSiaoKang/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kaiyi27/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kaiyi27/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Wongqingyee/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Wongqingyee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Wongqingyee/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ivan24004/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ivan24004/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alfaloo/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/angsongyee/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YowSiaoKang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YowSiaoKang/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Wongqingyee/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Wongqingyee/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LargeCrowd/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/irwynliong/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/drustanyjt/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cheahTJ/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bertrandong/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bertrandong/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cheahTJ/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/redcolorbicycle/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/redcolorbicycle/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/redcolorbicycle/ip.git (master) completed! +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [227/430] Analyzing https://github.com/LargeCrowd/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aureliony/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alfaloo/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ivan24004/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/headcube1/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/headcube1/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LargeCrowd/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LargeCrowd/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/pjanthony2001/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/pjanthony2001/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cheahTJ/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bertrandong/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ruijietay/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sindhurajain/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sindhurajain/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ruijietay/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YowSiaoKang/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/YowSiaoKang/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/YowSiaoKang/ip.git (master) completed! +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [228/430] Analyzing https://github.com/irwynliong/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/azumieflare/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aureliony/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jannaleong/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/azumieflare/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/qinboan/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/irwynliong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/irwynliong/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LargeCrowd/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LargeCrowd/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/qinboan/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yorklim/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yorklim/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yorklim/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [229/430] Analyzing https://github.com/jannaleong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jannaleong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jannaleong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LargeCrowd/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Wongqingyee/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/headcube1/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ragnapop/ip.git... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Wongqingyee/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Wongqingyee/ip.git (master) completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [229/430] Analyzing https://github.com/jannaleong/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ragnapop/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LargeCrowd/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LargeCrowd/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kaiyi27/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [230/430] Analyzing https://github.com/kaiyi27/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tengcharmaine/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tengcharmaine/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YowSiaoKang/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sindhurajain/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/pjanthony2001/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jannaleong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jannaleong/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nobodyishappy/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ruijietay/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Pughal77/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kaiyi27/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nobodyishappy/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kaiyi27/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/YowSiaoKang/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/YowSiaoKang/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/qinboan/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [231/430] Analyzing https://github.com/qinboan/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/moguries/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/moguries/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aureliony/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Joshy837/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/azumieflare/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chengjunyuan/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/qinboan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/qinboan/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Joshy837/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/PateShin/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PateShin/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Pughal77/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yorklim/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yorklim/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yorklim/ip.git (master) completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [231/430] Analyzing https://github.com/aureliony/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/aureliony/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/aureliony/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ragnapop/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jayllo-c/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jayllo-c/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Pughal77/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nobodyishappy/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gosongying/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PateShin/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/biinnnggggg/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gosongying/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/biinnnggggg/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ShanylOng/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ShanylOng/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/irwynliong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chengjunyuan/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/irwynliong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/irwynliong/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [232/430] Analyzing https://github.com/aureliony/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/aureliony/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/aureliony/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/qinboan/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/qinboan/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/qinboan/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kaiyi27/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [232/430] Analyzing https://github.com/qinboan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/qinboan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/qinboan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kaiyi27/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kaiyi27/ip.git (master) completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [233/430] Analyzing https://github.com/azumieflare/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tengcharmaine/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jannaleong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChrysanthemumT/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChrysanthemumT/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/azumieflare/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/azumieflare/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jayllo-c/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jannaleong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jannaleong/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KinTatHo/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [234/430] Analyzing https://github.com/tengcharmaine/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KinTatHo/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/azumieflare/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/azumieflare/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/biinnnggggg/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gosongying/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ShanylOng/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Rishit02/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rahhulleee/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chaaaaun/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Rishit02/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tengcharmaine/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tengcharmaine/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kaiyi27/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kaiyi27/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kaiyi27/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/moguries/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/camille-readbean/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chaaaaun/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rahhulleee/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/qinboan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/qinboan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/qinboan/ip.git (master) completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [235/430] Analyzing https://github.com/moguries/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/camille-readbean/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Joshy837/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chengjunyuan/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dabzpengu/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/aureliony/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/moguries/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/moguries/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cleowenxuan/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cleowenxuan/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dabzpengu/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/aureliony/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/aureliony/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/aureliony/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [236/430] Analyzing https://github.com/Joshy837/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [236/430] Analyzing https://github.com/chengjunyuan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chengjunyuan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chengjunyuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KinTatHo/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/azumieflare/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Joshy837/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Joshy837/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Rishit02/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JerryO3/ip.git... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/azumieflare/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/azumieflare/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [237/430] Analyzing https://github.com/Joshy837/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JerryO3/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tzaph/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tzaph/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chaaaaun/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Joshy837/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Joshy837/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rahhulleee/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RingoftheKing/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ashleyclx/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RingoftheKing/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ashleyclx/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tengcharmaine/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [237/430] Analyzing https://github.com/chengjunyuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChrysanthemumT/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/moguries/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ziiqii/ip.git... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chengjunyuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tengcharmaine/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tengcharmaine/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ziiqii/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chengjunyuan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chengjunyuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/moguries/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/moguries/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [238/430] Analyzing https://github.com/ChrysanthemumT/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChrysanthemumT/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChrysanthemumT/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chengjunyuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cleowenxuan/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/camille-readbean/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rertyy/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [239/430] Analyzing https://github.com/cleowenxuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/moguries/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chengjunyuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xiaorui-ui/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chengjunyuan/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dabzpengu/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [240/430] Analyzing https://github.com/camille-readbean/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xiaorui-ui/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TarinPairor/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rertyy/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TarinPairor/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cleowenxuan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cleowenxuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [239/430] Analyzing https://github.com/camille-readbean/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/moguries/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChrysanthemumT/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChrysanthemumT/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/moguries/ip.git (master) completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [240/430] Analyzing https://github.com/dabzpengu/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/camille-readbean/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/camille-readbean/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dabzpengu/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dabzpengu/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tzaph/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JerryO3/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RingoftheKing/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/laney0808/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NatLeong/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ashleyclx/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NatLeong/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jajared/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/laney0808/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kailashgautham/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kailashgautham/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jajared/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dabzpengu/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dabzpengu/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dabzpengu/ip.git (master) completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [241/430] Analyzing https://github.com/cleowenxuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Joshy837/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cleowenxuan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cleowenxuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Joshy837/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cleowenxuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Joshy837/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [241/430] Analyzing https://github.com/dabzpengu/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cleowenxuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cleowenxuan/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dabzpengu/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dabzpengu/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChrysanthemumT/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ziiqii/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [242/430] Analyzing https://github.com/ziiqii/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/amanzainal/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/amanzainal/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChrysanthemumT/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChrysanthemumT/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ziiqii/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ziiqii/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dabzpengu/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/laney0808/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/J-wang-CSMA/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jajared/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/J-wang-CSMA/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kinjalagarwal1810/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NatLeong/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kinjalagarwal1810/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kailashgautham/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NewtonKoh/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/UdhayaShan1/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/UdhayaShan1/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NewtonKoh/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cleowenxuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChrysanthemumT/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/camille-readbean/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dabzpengu/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dabzpengu/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xiaorui-ui/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TarinPairor/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/minwaiphyo/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [243/430] Analyzing https://github.com/TarinPairor/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [244/430] Analyzing https://github.com/xiaorui-ui/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Javiery3889/ip.git... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cleowenxuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cleowenxuan/ip.git (master) completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [243/430] Analyzing https://github.com/xiaorui-ui/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChrysanthemumT/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/camille-readbean/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChrysanthemumT/ip.git (master) completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/camille-readbean/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/minwaiphyo/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Javiery3889/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [244/430] Analyzing https://github.com/TarinPairor/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [245/430] Analyzing https://github.com/amanzainal/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xiaorui-ui/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xiaorui-ui/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TarinPairor/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TarinPairor/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rertyy/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jimseah-0116/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [245/430] Analyzing https://github.com/rertyy/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jimseah-0116/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rertyy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rertyy/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/amanzainal/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/amanzainal/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/amanzainal/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/J-wang-CSMA/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanqinyong/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/UdhayaShan1/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kinjalagarwal1810/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NewtonKoh/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanqinyong/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/theman-oj10/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/c-j-lh/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/c-j-lh/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/theman-oj10/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jovantanyk/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jovantanyk/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ziiqii/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/VatsalVitosh/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/VatsalVitosh/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xiaorui-ui/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TarinPairor/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ziiqii/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ziiqii/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [246/430] Analyzing https://github.com/amanzainal/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xiaorui-ui/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xiaorui-ui/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TarinPairor/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/amanzainal/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/amanzainal/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TarinPairor/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/minwaiphyo/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/narwhalsilent/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ziiqii/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ziiqii/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [246/430] Analyzing https://github.com/rertyy/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xiaorui-ui/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [247/430] Analyzing https://github.com/minwaiphyo/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/narwhalsilent/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Javiery3889/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [248/430] Analyzing https://github.com/Javiery3889/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChuaZiLong/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChuaZiLong/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xiaorui-ui/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/minwaiphyo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/minwaiphyo/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xiaorui-ui/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [248/430] Analyzing https://github.com/Javiery3889/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rertyy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rertyy/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanqinyong/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kappaccinoh/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Javiery3889/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Javiery3889/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/minwaiphyo/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jimseah-0116/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/minwaiphyo/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/minwaiphyo/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Lin-Shuang-Shuang/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [249/430] Analyzing https://github.com/jimseah-0116/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Lin-Shuang-Shuang/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jimseah-0116/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jimseah-0116/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/VatsalVitosh/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/whelan-low/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/whelan-low/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/amanzainal/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jovantanyk/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/theman-oj10/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kappaccinoh/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/c-j-lh/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/amanzainal/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/amanzainal/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/itstrueitstrueitsrealitsreal/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [249/430] Analyzing https://github.com/jimseah-0116/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/agreatdayy/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/agreatdayy/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/itstrueitstrueitsrealitsreal/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SampsonYe1999/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SampsonYe1999/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/minwaiphyo/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jimseah-0116/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jimseah-0116/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/minwaiphyo/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/minwaiphyo/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [250/430] Analyzing https://github.com/VatsalVitosh/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/VatsalVitosh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/VatsalVitosh/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jimseah-0116/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/narwhalsilent/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ThitipatC/ip.git... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rertyy/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jimseah-0116/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ThitipatC/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jimseah-0116/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kappaccinoh/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/The-Dudeski/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/itstrueitstrueitsrealitsreal/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SampsonYe1999/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/agreatdayy/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/The-Dudeski/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/VatsalVitosh/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/VatsalVitosh/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/VatsalVitosh/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [251/430] Analyzing https://github.com/narwhalsilent/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jimseah-0116/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/narwhalsilent/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/narwhalsilent/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rertyy/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/VatsalVitosh/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rertyy/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChuaZiLong/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YuvBindal/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jimseah-0116/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jimseah-0116/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [252/430] Analyzing https://github.com/ChuaZiLong/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YuvBindal/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/VatsalVitosh/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/VatsalVitosh/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +WARNING: Exception met while trying to clone the repo "The-Dudeski/ip[master]", will skip this repo. +reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/The-Dudeski/ip.git' 'repos/The-Dudeski_ip/ip_bare' on path . : +Cloning into bare repository 'repos/The-Dudeski_ip/ip_bare'... +fatal: could not read Username for 'https://github.com': No such device or address + + at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) + at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) + at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) + at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) + at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at java.base/java.lang.Thread.run(Thread.java:829) + +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ChuaZiLong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ChuaZiLong/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Javiery3889/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rertyy/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Javiery3889/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Javiery3889/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Lin-Shuang-Shuang/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/doyelee0313/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [253/430] Analyzing https://github.com/Lin-Shuang-Shuang/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/doyelee0313/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Lin-Shuang-Shuang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Lin-Shuang-Shuang/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/whelan-low/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/narwhalsilent/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/taniatsq/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [254/430] Analyzing https://github.com/whelan-low/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ChuaZiLong/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/taniatsq/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Lin-Shuang-Shuang/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Lin-Shuang-Shuang/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/narwhalsilent/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/narwhalsilent/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChuaZiLong/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/whelan-low/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/whelan-low/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/narwhalsilent/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChuaZiLong/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ThitipatC/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Rikko1204/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [254/430] Analyzing https://github.com/whelan-low/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [255/430] Analyzing https://github.com/ThitipatC/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Rikko1204/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Lin-Shuang-Shuang/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rertyy/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rertyy/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [256/430] Analyzing https://github.com/YuvBindal/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/whelan-low/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/whelan-low/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ThitipatC/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ThitipatC/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/YuvBindal/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/YuvBindal/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Lin-Shuang-Shuang/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/whelan-low/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Lin-Shuang-Shuang/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Lin-Shuang-Shuang/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YuvBindal/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Yskie/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [256/430] Analyzing https://github.com/YuvBindal/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/whelan-low/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/whelan-low/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Yskie/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/YuvBindal/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/YuvBindal/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/doyelee0313/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Lin-Shuang-Shuang/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Lin-Shuang-Shuang/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [257/430] Analyzing https://github.com/doyelee0313/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Fidget-Spinner/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Fidget-Spinner/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [258/430] Analyzing https://github.com/taniatsq/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YuvBindal/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ThitipatC/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/doyelee0313/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/doyelee0313/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ThitipatC/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/taniatsq/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/FangRuoqing/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [258/430] Analyzing https://github.com/taniatsq/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/FangRuoqing/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ThitipatC/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ThitipatC/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/taniatsq/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/taniatsq/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YuvBindal/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/YuvBindal/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/YuvBindal/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/doyelee0313/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/doyelee0313/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/doyelee0313/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Rikko1204/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ThitipatC/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ThitipatC/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [259/430] Analyzing https://github.com/Rikko1204/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhuuyicheng/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Yskie/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhuuyicheng/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [260/430] Analyzing https://github.com/Yskie/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/smolegz/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/smolegz/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Rikko1204/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Rikko1204/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/taniatsq/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Yskie/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Yskie/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/doyelee0313/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/doyelee0313/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/doyelee0313/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/taniatsq/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [261/430] Analyzing https://github.com/Fidget-Spinner/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/taniatsq/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/taniatsq/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Fidget-Spinner/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [261/430] Analyzing https://github.com/Fidget-Spinner/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jinhanfromNUS/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jinhanfromNUS/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Fidget-Spinner/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Fidget-Spinner/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/FangRuoqing/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/0nesheep/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [262/430] Analyzing https://github.com/FangRuoqing/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/0nesheep/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Yskie/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/FangRuoqing/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/FangRuoqing/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Yskie/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Rikko1204/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Yskie/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Yskie/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Rikko1204/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Rikko1204/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhuuyicheng/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [263/430] Analyzing https://github.com/zhuuyicheng/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AdityaB4/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AdityaB4/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/FangRuoqing/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Rikko1204/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zhuuyicheng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zhuuyicheng/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/FangRuoqing/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/FangRuoqing/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/smolegz/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Rikko1204/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Rikko1204/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [264/430] Analyzing https://github.com/smolegz/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HM33-Stu/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HM33-Stu/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/FangRuoqing/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/smolegz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/smolegz/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Fidget-Spinner/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jinhanfromNUS/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yap-zong-xin/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/FangRuoqing/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/FangRuoqing/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [265/430] Analyzing https://github.com/jinhanfromNUS/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yap-zong-xin/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Fidget-Spinner/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Fidget-Spinner/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jinhanfromNUS/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jinhanfromNUS/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/0nesheep/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Fidget-Spinner/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Fidget-Spinner/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Fidget-Spinner/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [266/430] Analyzing https://github.com/0nesheep/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jocelyn-soh/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jocelyn-soh/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/0nesheep/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/0nesheep/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/zhuuyicheng/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AdityaB4/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/felixchanyy/ip.git... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhuuyicheng/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/felixchanyy/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhuuyicheng/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [267/430] Analyzing https://github.com/AdityaB4/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jinhanfromNUS/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AdityaB4/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AdityaB4/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/smolegz/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jinhanfromNUS/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhuuyicheng/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jinhanfromNUS/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jinhanfromNUS/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/smolegz/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HM33-Stu/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhuuyicheng/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/smolegz/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [268/430] Analyzing https://github.com/HM33-Stu/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/donwong2308/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/donwong2308/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jinhanfromNUS/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [267/430] Analyzing https://github.com/HM33-Stu/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [268/430] Analyzing https://github.com/yap-zong-xin/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [269/430] Analyzing https://github.com/AdityaB4/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HM33-Stu/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HM33-Stu/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yap-zong-xin/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yap-zong-xin/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yap-zong-xin/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AdityaB4/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AdityaB4/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HM33-Stu/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [269/430] Analyzing https://github.com/yap-zong-xin/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/minreiseah/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/minreiseah/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HM33-Stu/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HM33-Stu/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yap-zong-xin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yap-zong-xin/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/0nesheep/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/0nesheep/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/0nesheep/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AdityaB4/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AdityaB4/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AdityaB4/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jocelyn-soh/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [270/430] Analyzing https://github.com/jocelyn-soh/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Pluiexo/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Pluiexo/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jocelyn-soh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jocelyn-soh/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yap-zong-xin/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/0nesheep/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AdityaB4/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yap-zong-xin/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yap-zong-xin/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/felixchanyy/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AdityaB4/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AdityaB4/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/0nesheep/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/0nesheep/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [272/430] Analyzing https://github.com/donwong2308/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [273/430] Analyzing https://github.com/minreiseah/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [271/430] Analyzing https://github.com/felixchanyy/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Emberlynn-Loo/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Emberlynn-Loo/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/donwong2308/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/donwong2308/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jocelyn-soh/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/minreiseah/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/minreiseah/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/felixchanyy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/felixchanyy/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jocelyn-soh/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jocelyn-soh/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jocelyn-soh/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/donwong2308/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [272/430] Analyzing https://github.com/donwong2308/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DhiraPT/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DhiraPT/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/donwong2308/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/donwong2308/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/felixchanyy/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/felixchanyy/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/minreiseah/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/felixchanyy/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [273/430] Analyzing https://github.com/minreiseah/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/howen02/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/howen02/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [274/430] Analyzing https://github.com/Pluiexo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Pluiexo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Pluiexo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/donwong2308/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/minreiseah/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/minreiseah/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/minreiseah/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/donwong2308/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/donwong2308/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/minreiseah/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/minreiseah/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/minreiseah/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Emberlynn-Loo/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [274/430] Analyzing https://github.com/Emberlynn-Loo/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shunjieee/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shunjieee/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Pluiexo/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [275/430] Analyzing https://github.com/Pluiexo/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nigel27022001/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nigel27022001/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [275/430] Analyzing https://github.com/Emberlynn-Loo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [276/430] Analyzing https://github.com/DhiraPT/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Emberlynn-Loo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Emberlynn-Loo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Pluiexo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Pluiexo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DhiraPT/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [276/430] Analyzing https://github.com/DhiraPT/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shayaansultan/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shayaansultan/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/felixchanyy/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/DhiraPT/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/DhiraPT/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Emberlynn-Loo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Emberlynn-Loo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Emberlynn-Loo/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/howen02/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mahadhir247/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/felixchanyy/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/felixchanyy/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [277/430] Analyzing https://github.com/howen02/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Pluiexo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mahadhir247/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/howen02/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/howen02/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Pluiexo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Pluiexo/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/DhiraPT/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/DhiraPT/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/DhiraPT/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nigel27022001/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [278/430] Analyzing https://github.com/nigel27022001/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GiselleTan/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GiselleTan/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shunjieee/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lihaoquan/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [279/430] Analyzing https://github.com/shunjieee/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lihaoquan/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nigel27022001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nigel27022001/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shayaansultan/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [280/430] Analyzing https://github.com/shayaansultan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/PallonCX/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Emberlynn-Loo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [278/430] Analyzing https://github.com/shunjieee/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Emberlynn-Loo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Emberlynn-Loo/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [279/430] Analyzing https://github.com/nigel27022001/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shunjieee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shunjieee/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PallonCX/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shayaansultan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shayaansultan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nigel27022001/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nigel27022001/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shunjieee/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shunjieee/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shunjieee/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/howen02/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mahadhir247/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [281/430] Analyzing https://github.com/mahadhir247/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yadunut/ip.git... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/howen02/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/howen02/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yadunut/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [280/430] Analyzing https://github.com/mahadhir247/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mahadhir247/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mahadhir247/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shayaansultan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shayaansultan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shayaansultan/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/DhiraPT/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/DhiraPT/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/DhiraPT/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [281/430] Analyzing https://github.com/shayaansultan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nigel27022001/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shayaansultan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shayaansultan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nigel27022001/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nigel27022001/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lihaoquan/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [282/430] Analyzing https://github.com/lihaoquan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yiwern5/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yiwern5/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GiselleTan/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/saiutkarsh33/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [283/430] Analyzing https://github.com/GiselleTan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/saiutkarsh33/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lihaoquan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lihaoquan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [282/430] Analyzing https://github.com/GiselleTan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GiselleTan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GiselleTan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mahadhir247/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/mahadhir247/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/mahadhir247/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PallonCX/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [284/430] Analyzing https://github.com/PallonCX/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Dexter-Wong/ip.git... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/howen02/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/howen02/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/howen02/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [283/430] Analyzing https://github.com/lihaoquan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/GiselleTan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Dexter-Wong/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mahadhir247/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/GiselleTan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/GiselleTan/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lihaoquan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lihaoquan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [284/430] Analyzing https://github.com/PallonCX/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/mahadhir247/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/mahadhir247/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [285/430] Analyzing https://github.com/yadunut/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PallonCX/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PallonCX/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lihaoquan/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yadunut/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [285/430] Analyzing https://github.com/yadunut/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/h4ow3i/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/h4ow3i/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lihaoquan/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lihaoquan/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shayaansultan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yadunut/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yadunut/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/saiutkarsh33/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shayaansultan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shayaansultan/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [286/430] Analyzing https://github.com/saiutkarsh33/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Derekljh/ip.git... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/PallonCX/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Derekljh/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/saiutkarsh33/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/saiutkarsh33/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PallonCX/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PallonCX/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Dexter-Wong/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yadunut/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jayne1010/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [287/430] Analyzing https://github.com/Dexter-Wong/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jayne1010/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yadunut/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lihaoquan/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lihaoquan/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lihaoquan/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/saiutkarsh33/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yadunut/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [287/430] Analyzing https://github.com/Dexter-Wong/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Dexter-Wong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Dexter-Wong/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/saiutkarsh33/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/PallonCX/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/saiutkarsh33/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/h4ow3i/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [288/430] Analyzing https://github.com/h4ow3i/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/officialchengyud/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/officialchengyud/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/h4ow3i/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/h4ow3i/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yiwern5/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yadunut/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PallonCX/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PallonCX/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [289/430] Analyzing https://github.com/yiwern5/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chenyixin0/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chenyixin0/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yadunut/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yadunut/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [290/430] Analyzing https://github.com/officialchengyud/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yiwern5/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yiwern5/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/officialchengyud/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/officialchengyud/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Dexter-Wong/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Dexter-Wong/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Dexter-Wong/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yiwern5/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yiwern5/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Derekljh/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [290/430] Analyzing https://github.com/Derekljh/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shavonneg/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shavonneg/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [291/430] Analyzing https://github.com/Derekljh/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Derekljh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Derekljh/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/officialchengyud/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/h4ow3i/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/officialchengyud/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/officialchengyud/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [292/430] Analyzing https://github.com/chenyixin0/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/h4ow3i/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/h4ow3i/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Derekljh/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Derekljh/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Derekljh/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/officialchengyud/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [291/430] Analyzing https://github.com/officialchengyud/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/caitlyntang/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/caitlyntang/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/officialchengyud/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/officialchengyud/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chenyixin0/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/getsquared/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [292/430] Analyzing https://github.com/chenyixin0/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/getsquared/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jayne1010/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [293/430] Analyzing https://github.com/Jayne1010/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ashleyy2444/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ashleyy2444/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chenyixin0/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chenyixin0/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Derekljh/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jayne1010/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jayne1010/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shavonneg/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhekaiii/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhekaiii/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yiwern5/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yiwern5/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yiwern5/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Derekljh/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Derekljh/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [294/430] Analyzing https://github.com/shavonneg/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/officialchengyud/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shavonneg/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shavonneg/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/officialchengyud/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/officialchengyud/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chenyixin0/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chenyixin0/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chenyixin0/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jayne1010/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jayne1010/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jayne1010/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [295/430] Analyzing https://github.com/getsquared/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/getsquared/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/getsquared/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shavonneg/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shavonneg/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shavonneg/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/caitlyntang/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [295/430] Analyzing https://github.com/caitlyntang/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/johnyoozhengxian/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/johnyoozhengxian/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ashleyy2444/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [296/430] Analyzing https://github.com/ashleyy2444/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/meenulekha/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/meenulekha/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jayne1010/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [296/430] Analyzing https://github.com/caitlyntang/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yiwern5/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jayne1010/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jayne1010/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yiwern5/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [297/430] Analyzing https://github.com/ashleyy2444/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yiwern5/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/caitlyntang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/caitlyntang/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [298/430] Analyzing https://github.com/zhekaiii/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ashleyy2444/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ashleyy2444/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zhekaiii/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zhekaiii/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/getsquared/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/caitlyntang/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/caitlyntang/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/caitlyntang/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhekaiii/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ashleyy2444/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [297/430] Analyzing https://github.com/zhekaiii/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Li-Zizhen/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Li-Zizhen/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ashleyy2444/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ashleyy2444/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zhekaiii/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zhekaiii/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/johnyoozhengxian/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [298/430] Analyzing https://github.com/johnyoozhengxian/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SimHanKiong/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SimHanKiong/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhekaiii/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/meenulekha/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/getsquared/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/getsquared/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [299/430] Analyzing https://github.com/johnyoozhengxian/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [300/430] Analyzing https://github.com/meenulekha/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/johnyoozhengxian/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/johnyoozhengxian/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [299/430] Analyzing https://github.com/meenulekha/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JuliaPoo/ip.git... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhekaiii/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhekaiii/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JuliaPoo/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ashleyy2444/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/meenulekha/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/meenulekha/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ashleyy2444/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ashleyy2444/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [301/430] Analyzing https://github.com/Li-Zizhen/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Li-Zizhen/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Li-Zizhen/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/johnyoozhengxian/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/meenulekha/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/johnyoozhengxian/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/johnyoozhengxian/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/meenulekha/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Li-Zizhen/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [300/430] Analyzing https://github.com/Li-Zizhen/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vannykin/ip.git... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [302/430] Analyzing https://github.com/SimHanKiong/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/meenulekha/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vannykin/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/meenulekha/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Li-Zizhen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Li-Zizhen/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/getsquared/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [301/430] Analyzing https://github.com/getsquared/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/teojunda/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/teojunda/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/getsquared/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/getsquared/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Li-Zizhen/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Li-Zizhen/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Li-Zizhen/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SimHanKiong/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ko-Khan/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [302/430] Analyzing https://github.com/SimHanKiong/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ko-Khan/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhekaiii/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [303/430] Analyzing https://github.com/teojunda/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SimHanKiong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SimHanKiong/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/getsquared/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/getsquared/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/getsquared/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JuliaPoo/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [303/430] Analyzing https://github.com/JuliaPoo/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jyztintan/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jyztintan/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JuliaPoo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JuliaPoo/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vannykin/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jasperng-nus/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhekaiii/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/teojunda/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/teojunda/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhekaiii/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [304/430] Analyzing https://github.com/vannykin/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jasperng-nus/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Li-Zizhen/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/vannykin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/vannykin/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/teojunda/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/delishad21/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [305/430] Analyzing https://github.com/teojunda/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/delishad21/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/teojunda/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/teojunda/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SimHanKiong/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Li-Zizhen/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Li-Zizhen/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [305/430] Analyzing https://github.com/JuliaPoo/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JuliaPoo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JuliaPoo/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/vannykin/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/vannykin/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/vannykin/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SimHanKiong/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SimHanKiong/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ko-Khan/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [306/430] Analyzing https://github.com/Ko-Khan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/IamZhenHong/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/IamZhenHong/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JuliaPoo/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ko-Khan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ko-Khan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JuliaPoo/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JuliaPoo/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jyztintan/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [307/430] Analyzing https://github.com/jyztintan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shamesjen/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shamesjen/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jyztintan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jyztintan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/teojunda/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ko-Khan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jasperng-nus/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SimHanKiong/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/teojunda/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/teojunda/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [308/430] Analyzing https://github.com/jasperng-nus/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ma-Yirui/ip.git... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SimHanKiong/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [307/430] Analyzing https://github.com/jasperng-nus/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SimHanKiong/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [308/430] Analyzing https://github.com/jyztintan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jasperng-nus/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jasperng-nus/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jyztintan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jyztintan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JuliaPoo/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ko-Khan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JuliaPoo/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ko-Khan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JuliaPoo/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ko-Khan/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ma-Yirui/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jasperng-nus/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jasperng-nus/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jasperng-nus/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jasperng-nus/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jyztintan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jasperng-nus/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/delishad21/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [309/430] Analyzing https://github.com/delishad21/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/timothysashimi/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/timothysashimi/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jyztintan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jyztintan/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/delishad21/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/delishad21/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/IamZhenHong/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [310/430] Analyzing https://github.com/IamZhenHong/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Xilef121/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Xilef121/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/IamZhenHong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/IamZhenHong/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shamesjen/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/delishad21/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/delishad21/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jasperng-nus/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jasperng-nus/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jasperng-nus/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [311/430] Analyzing https://github.com/shamesjen/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SamuelZero1/ip.git... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/IamZhenHong/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SamuelZero1/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/IamZhenHong/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/IamZhenHong/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ma-Yirui/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shamesjen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shamesjen/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/IamZhenHong/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/IamZhenHong/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [312/430] Analyzing https://github.com/Ma-Yirui/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/swtan346/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/swtan346/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ma-Yirui/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ma-Yirui/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/delishad21/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/delishad21/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ma-Yirui/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/delishad21/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/timothysashimi/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jyztintan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jyztintan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jyztintan/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [313/430] Analyzing https://github.com/timothysashimi/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/faaheem13/ip.git... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ma-Yirui/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ma-Yirui/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/faaheem13/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/timothysashimi/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/timothysashimi/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shamesjen/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shamesjen/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shamesjen/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Xilef121/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ma-Yirui/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ma-Yirui/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ma-Yirui/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [314/430] Analyzing https://github.com/Xilef121/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChenXy128/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChenXy128/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Xilef121/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Xilef121/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/delishad21/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shamesjen/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/delishad21/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/delishad21/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shamesjen/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [315/430] Analyzing https://github.com/SamuelZero1/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shamesjen/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [316/430] Analyzing https://github.com/faaheem13/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SamuelZero1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SamuelZero1/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/faaheem13/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/faaheem13/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Xilef121/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Xilef121/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/timothysashimi/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Xilef121/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [317/430] Analyzing https://github.com/swtan346/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SamuelZero1/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/timothysashimi/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/timothysashimi/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/swtan346/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [315/430] Analyzing https://github.com/swtan346/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Arixeyeion/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Arixeyeion/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Xilef121/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SamuelZero1/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/swtan346/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/swtan346/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Xilef121/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Xilef121/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/faaheem13/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [316/430] Analyzing https://github.com/faaheem13/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Darylgolden/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Darylgolden/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/faaheem13/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/faaheem13/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/swtan346/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChenXy128/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/swtan346/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/swtan346/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tankh99/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [317/430] Analyzing https://github.com/ChenXy128/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tankh99/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SamuelZero1/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/timothysashimi/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/faaheem13/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChenXy128/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChenXy128/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [318/430] Analyzing https://github.com/ChenXy128/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [319/430] Analyzing https://github.com/Darylgolden/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/faaheem13/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/faaheem13/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [320/430] Analyzing https://github.com/Arixeyeion/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChenXy128/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChenXy128/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Darylgolden/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Darylgolden/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Arixeyeion/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Arixeyeion/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ChenXy128/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChenXy128/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/swtan346/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChenXy128/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Arixeyeion/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [318/430] Analyzing https://github.com/Arixeyeion/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Tsenrae/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Tsenrae/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Arixeyeion/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Arixeyeion/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Darylgolden/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [319/430] Analyzing https://github.com/Darylgolden/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/starsia/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/starsia/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Darylgolden/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Darylgolden/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Arixeyeion/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Arixeyeion/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Arixeyeion/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tankh99/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [320/430] Analyzing https://github.com/tankh99/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hjungwoo01/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hjungwoo01/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [321/430] Analyzing https://github.com/Tsenrae/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/swtan346/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/swtan346/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [322/430] Analyzing https://github.com/tankh99/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Tsenrae/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Tsenrae/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tankh99/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tankh99/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Darylgolden/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Arixeyeion/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Darylgolden/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Darylgolden/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Tsenrae/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [321/430] Analyzing https://github.com/Tsenrae/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YuSoonZ/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YuSoonZ/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Tsenrae/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Tsenrae/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/starsia/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [322/430] Analyzing https://github.com/starsia/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Darkarche3/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Darkarche3/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SamuelZero1/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Vision-2000/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [323/430] Analyzing https://github.com/SamuelZero1/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [323/430] Analyzing https://github.com/starsia/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Arixeyeion/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Arixeyeion/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/starsia/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/starsia/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Vision-2000/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SamuelZero1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SamuelZero1/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tankh99/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [324/430] Analyzing https://github.com/hjungwoo01/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hjungwoo01/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hjungwoo01/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Tsenrae/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Tsenrae/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tankh99/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Tsenrae/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tankh99/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/starsia/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [325/430] Analyzing https://github.com/YuSoonZ/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/starsia/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/starsia/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SamuelZero1/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SamuelZero1/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SamuelZero1/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hjungwoo01/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [324/430] Analyzing https://github.com/hjungwoo01/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chiageng/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chiageng/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hjungwoo01/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hjungwoo01/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YuSoonZ/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [325/430] Analyzing https://github.com/YuSoonZ/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/logical-1985516/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/logical-1985516/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [326/430] Analyzing https://github.com/Darkarche3/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YuSoonZ/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YuSoonZ/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Darkarche3/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ananya21/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [326/430] Analyzing https://github.com/Darkarche3/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Vision-2000/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ananya21/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [327/430] Analyzing https://github.com/Vision-2000/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/purivirakarin/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/purivirakarin/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Darkarche3/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Darkarche3/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Vision-2000/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Vision-2000/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hjungwoo01/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hjungwoo01/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hjungwoo01/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tankh99/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tankh99/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tankh99/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [327/430] Analyzing https://github.com/Vision-2000/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Darkarche3/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Darkarche3/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Darkarche3/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chiageng/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Vision-2000/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Vision-2000/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [328/430] Analyzing https://github.com/chiageng/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/joenus/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/joenus/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chiageng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chiageng/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YuSoonZ/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Vision-2000/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/YuSoonZ/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/YuSoonZ/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Vision-2000/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Vision-2000/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/logical-1985516/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jessicawyz/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hjungwoo01/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hjungwoo01/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hjungwoo01/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [329/430] Analyzing https://github.com/logical-1985516/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jessicawyz/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/logical-1985516/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/logical-1985516/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ananya21/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YuSoonZ/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/YuSoonZ/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/YuSoonZ/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [330/430] Analyzing https://github.com/ananya21/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/casaarlai/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/purivirakarin/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/casaarlai/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [331/430] Analyzing https://github.com/purivirakarin/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ryo-Seah/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ryo-Seah/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Vision-2000/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ananya21/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ananya21/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Vision-2000/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Vision-2000/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [331/430] Analyzing https://github.com/purivirakarin/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/purivirakarin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/purivirakarin/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ananya21/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chiageng/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ananya21/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ananya21/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [332/430] Analyzing https://github.com/joenus/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chiageng/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chiageng/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/logical-1985516/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/logical-1985516/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/logical-1985516/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/purivirakarin/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/joenus/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [332/430] Analyzing https://github.com/joenus/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jeremiahlzz/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jeremiahlzz/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/purivirakarin/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/purivirakarin/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [333/430] Analyzing https://github.com/jessicawyz/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/joenus/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/joenus/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jessicawyz/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [333/430] Analyzing https://github.com/jessicawyz/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/macareonie/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/macareonie/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jessicawyz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jessicawyz/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ryo-Seah/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [334/430] Analyzing https://github.com/Ryo-Seah/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chin-herng/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/casaarlai/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chin-herng/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [335/430] Analyzing https://github.com/casaarlai/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gowthaman-01/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gowthaman-01/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ryo-Seah/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ryo-Seah/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/logical-1985516/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/logical-1985516/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [334/430] Analyzing https://github.com/casaarlai/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/casaarlai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/casaarlai/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/joenus/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/joenus/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/joenus/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jessicawyz/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jessicawyz/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jessicawyz/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/purivirakarin/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/purivirakarin/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/purivirakarin/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [335/430] Analyzing https://github.com/Ryo-Seah/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/casaarlai/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jeremiahlzz/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ryo-Seah/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ryo-Seah/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/casaarlai/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/casaarlai/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [336/430] Analyzing https://github.com/jeremiahlzz/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Joseph31416/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Joseph31416/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jessicawyz/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jeremiahlzz/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jeremiahlzz/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jessicawyz/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jessicawyz/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [337/430] Analyzing https://github.com/chin-herng/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chin-herng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chin-herng/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/joenus/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/joenus/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/joenus/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [338/430] Analyzing https://github.com/macareonie/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/macareonie/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/macareonie/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Ryo-Seah/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jeremiahlzz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jeremiahlzz/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ryo-Seah/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ryo-Seah/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/macareonie/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [337/430] Analyzing https://github.com/macareonie/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/radeon2525/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/radeon2525/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/macareonie/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/macareonie/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jeremiahlzz/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jeremiahlzz/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jeremiahlzz/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chin-herng/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ejnan/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [338/430] Analyzing https://github.com/chin-herng/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ejnan/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gowthaman-01/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [339/430] Analyzing https://github.com/gowthaman-01/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jskimdev/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chin-herng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chin-herng/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jskimdev/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/gowthaman-01/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/gowthaman-01/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/macareonie/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/macareonie/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/macareonie/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jeremiahlzz/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jeremiahlzz/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jeremiahlzz/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chin-herng/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [340/430] Analyzing https://github.com/Joseph31416/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chin-herng/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chin-herng/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Joseph31416/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [340/430] Analyzing https://github.com/Joseph31416/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Chiarena/ip.git... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [341/430] Analyzing https://github.com/ejnan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Joseph31416/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Joseph31416/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ejnan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ejnan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ejnan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/gowthaman-01/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Chiarena/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ejnan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ejnan/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [342/430] Analyzing https://github.com/radeon2525/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/gowthaman-01/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/macareonie/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/gowthaman-01/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Joseph31416/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Joseph31416/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/radeon2525/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [341/430] Analyzing https://github.com/radeon2525/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chonghaoen/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chonghaoen/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [343/430] Analyzing https://github.com/jskimdev/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/radeon2525/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/radeon2525/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jskimdev/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [342/430] Analyzing https://github.com/jskimdev/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/CJerrong/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/CJerrong/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/macareonie/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/macareonie/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jskimdev/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jskimdev/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ejnan/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [343/430] Analyzing https://github.com/ejnan/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/qinxutan/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/qinxutan/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ejnan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ejnan/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/radeon2525/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/radeon2525/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/radeon2525/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [344/430] Analyzing https://github.com/Chiarena/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Chiarena/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Chiarena/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Joseph31416/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jskimdev/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Joseph31416/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Joseph31416/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [345/430] Analyzing https://github.com/CJerrong/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Chiarena/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jskimdev/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CJerrong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CJerrong/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Chiarena/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Chiarena/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [346/430] Analyzing https://github.com/chonghaoen/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jskimdev/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ejnan/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jskimdev/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ejnan/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ejnan/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Chiarena/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [344/430] Analyzing https://github.com/Chiarena/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/billyhoce/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/billyhoce/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Chiarena/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Chiarena/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chonghaoen/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/4llysa/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [345/430] Analyzing https://github.com/chonghaoen/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/4llysa/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/radeon2525/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [347/430] Analyzing https://github.com/billyhoce/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chonghaoen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chonghaoen/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Chiarena/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Chiarena/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Chiarena/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CJerrong/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [346/430] Analyzing https://github.com/CJerrong/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TopKec/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TopKec/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CJerrong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CJerrong/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/qinxutan/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [347/430] Analyzing https://github.com/qinxutan/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tahsinhasem/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tahsinhasem/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chonghaoen/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/radeon2525/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/radeon2525/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/billyhoce/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/billyhoce/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [348/430] Analyzing https://github.com/qinxutan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/qinxutan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/qinxutan/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chonghaoen/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CJerrong/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chonghaoen/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chonghaoen/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/billyhoce/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [348/430] Analyzing https://github.com/billyhoce/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/MarcusGitty/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/MarcusGitty/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/billyhoce/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/billyhoce/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CJerrong/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [349/430] Analyzing https://github.com/TopKec/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/CJerrong/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/CJerrong/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/4llysa/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [349/430] Analyzing https://github.com/4llysa/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shawnnlimm/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shawnnlimm/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/4llysa/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/4llysa/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/qinxutan/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/qinxutan/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/qinxutan/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TopKec/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [350/430] Analyzing https://github.com/TopKec/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/huekoh/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/huekoh/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [350/430] Analyzing https://github.com/4llysa/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TopKec/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TopKec/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tahsinhasem/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [351/430] Analyzing https://github.com/tahsinhasem/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JonChong98/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JonChong98/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tahsinhasem/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tahsinhasem/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/4llysa/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/billyhoce/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/4llysa/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/4llysa/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/4llysa/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/billyhoce/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/4llysa/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/billyhoce/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [351/430] Analyzing https://github.com/tahsinhasem/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/qinxutan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tahsinhasem/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tahsinhasem/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/qinxutan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/qinxutan/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [352/430] Analyzing https://github.com/MarcusGitty/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MarcusGitty/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MarcusGitty/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tahsinhasem/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tahsinhasem/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tahsinhasem/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TopKec/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/MarcusGitty/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [352/430] Analyzing https://github.com/MarcusGitty/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/STELLA-LYE/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/STELLA-LYE/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [353/430] Analyzing https://github.com/shawnnlimm/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/4llysa/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TopKec/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TopKec/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MarcusGitty/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MarcusGitty/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shawnnlimm/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [353/430] Analyzing https://github.com/shawnnlimm/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nyankoclaws/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nyankoclaws/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shawnnlimm/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shawnnlimm/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MarcusGitty/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/MarcusGitty/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/MarcusGitty/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shawnnlimm/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shawnnlimm/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shawnnlimm/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/huekoh/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/4llysa/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [354/430] Analyzing https://github.com/huekoh/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/meowwtama/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/meowwtama/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/4llysa/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [355/430] Analyzing https://github.com/JonChong98/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/huekoh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/huekoh/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JonChong98/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [355/430] Analyzing https://github.com/JonChong98/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KohGuanZeh/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KohGuanZeh/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JonChong98/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JonChong98/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/huekoh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/huekoh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/huekoh/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JonChong98/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JonChong98/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JonChong98/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/STELLA-LYE/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MarcusGitty/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/MarcusGitty/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/MarcusGitty/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [356/430] Analyzing https://github.com/STELLA-LYE/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nuyer/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nuyer/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/STELLA-LYE/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/STELLA-LYE/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nyankoclaws/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JonChong98/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JonChong98/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/huekoh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JonChong98/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [357/430] Analyzing https://github.com/nyankoclaws/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SeaHogs/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SeaHogs/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/huekoh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/huekoh/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shawnnlimm/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [358/430] Analyzing https://github.com/meowwtama/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nyankoclaws/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nyankoclaws/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shawnnlimm/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shawnnlimm/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/meowwtama/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/meowwtama/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [359/430] Analyzing https://github.com/KohGuanZeh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KohGuanZeh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KohGuanZeh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nyankoclaws/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nyankoclaws/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nyankoclaws/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KohGuanZeh/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [358/430] Analyzing https://github.com/KohGuanZeh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/S-Aishvarya/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/S-Aishvarya/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/meowwtama/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/STELLA-LYE/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [359/430] Analyzing https://github.com/meowwtama/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tejas-1405/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tejas-1405/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KohGuanZeh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KohGuanZeh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/STELLA-LYE/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/meowwtama/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/meowwtama/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/STELLA-LYE/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nuyer/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/meowwtama/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [360/430] Analyzing https://github.com/nuyer/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/youdonnnn/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/youdonnnn/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/meowwtama/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/meowwtama/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nuyer/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nuyer/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SeaHogs/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [361/430] Analyzing https://github.com/SeaHogs/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tcjazwei/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tcjazwei/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/meowwtama/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/STELLA-LYE/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SeaHogs/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SeaHogs/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/meowwtama/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/meowwtama/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "tcjazwei/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/tcjazwei/ip.git' 'repos/tcjazwei_ip/ip_bare' on path . : -Cloning into bare repository 'repos/tcjazwei_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jieqiboh/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jieqiboh/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nuyer/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nuyer/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nuyer/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SeaHogs/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KohGuanZeh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KohGuanZeh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SeaHogs/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tejas-1405/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SeaHogs/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KohGuanZeh/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/S-Aishvarya/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wongkj12/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [362/430] Analyzing https://github.com/tejas-1405/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [363/430] Analyzing https://github.com/S-Aishvarya/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GERARDJM018/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wongkj12/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GERARDJM018/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/STELLA-LYE/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/STELLA-LYE/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [362/430] Analyzing https://github.com/S-Aishvarya/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/S-Aishvarya/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/S-Aishvarya/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tejas-1405/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tejas-1405/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/S-Aishvarya/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/S-Aishvarya/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/S-Aishvarya/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/S-Aishvarya/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tejas-1405/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tejas-1405/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/youdonnnn/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tejas-1405/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [363/430] Analyzing https://github.com/tejas-1405/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tejas-1405/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tejas-1405/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nuyer/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SeaHogs/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KohGuanZeh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nuyer/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nuyer/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [364/430] Analyzing https://github.com/youdonnnn/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/blaukc/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/blaukc/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SeaHogs/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SeaHogs/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KohGuanZeh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [365/430] Analyzing https://github.com/jieqiboh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KohGuanZeh/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [366/430] Analyzing https://github.com/wongkj12/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/youdonnnn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/youdonnnn/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/youdonnnn/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/youdonnnn/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/youdonnnn/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jieqiboh/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [365/430] Analyzing https://github.com/jieqiboh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tohlh/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tohlh/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GERARDJM018/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wongkj12/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jieqiboh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jieqiboh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [366/430] Analyzing https://github.com/GERARDJM018/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hiivan/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [367/430] Analyzing https://github.com/wongkj12/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/darkvoid32/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/darkvoid32/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hiivan/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wongkj12/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wongkj12/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tejas-1405/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tejas-1405/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tejas-1405/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [367/430] Analyzing https://github.com/GERARDJM018/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/youdonnnn/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/youdonnnn/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GERARDJM018/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GERARDJM018/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/blaukc/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yapxuanxuan/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/youdonnnn/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [368/430] Analyzing https://github.com/blaukc/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yapxuanxuan/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/blaukc/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/blaukc/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wongkj12/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jieqiboh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wongkj12/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wongkj12/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/GERARDJM018/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [369/430] Analyzing https://github.com/tohlh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jieqiboh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tohlh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tohlh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jieqiboh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jieqiboh/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tohlh/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/GERARDJM018/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/darkvoid32/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/GERARDJM018/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [369/430] Analyzing https://github.com/darkvoid32/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanjiajiajun/ip.git... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [370/430] Analyzing https://github.com/darkvoid32/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/darkvoid32/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/darkvoid32/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/blaukc/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [370/430] Analyzing https://github.com/tohlh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Greg-Tan/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanjiajiajun/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Greg-Tan/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hiivan/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/GERARDJM018/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/blaukc/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/blaukc/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tohlh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tohlh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/darkvoid32/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/darkvoid32/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/GERARDJM018/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [371/430] Analyzing https://github.com/hiivan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kervyntan/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yapxuanxuan/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AndrewOng2066/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/GERARDJM018/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [372/430] Analyzing https://github.com/yapxuanxuan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kervyntan/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AndrewOng2066/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yapxuanxuan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yapxuanxuan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hiivan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hiivan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yapxuanxuan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/darkvoid32/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yapxuanxuan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yapxuanxuan/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/darkvoid32/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/darkvoid32/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanjiajiajun/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [373/430] Analyzing https://github.com/tanjiajiajun/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/g-tejas/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/g-tejas/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tanjiajiajun/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tanjiajiajun/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tohlh/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Greg-Tan/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yapxuanxuan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tohlh/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kervyntan/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AndrewOng2066/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yapxuanxuan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yapxuanxuan/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tohlh/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [374/430] Analyzing https://github.com/kervyntan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RyanNgWH/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yeoshuheng/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [375/430] Analyzing https://github.com/Greg-Tan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RyanNgWH/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jonpwk/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yeoshuheng/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jonpwk/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kervyntan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kervyntan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [374/430] Analyzing https://github.com/Greg-Tan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [375/430] Analyzing https://github.com/kervyntan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Greg-Tan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Greg-Tan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kervyntan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kervyntan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Greg-Tan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hiivan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hiivan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hiivan/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Greg-Tan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Greg-Tan/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [376/430] Analyzing https://github.com/AndrewOng2066/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/AndrewOng2066/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/AndrewOng2066/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Greg-Tan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Greg-Tan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Greg-Tan/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hiivan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hiivan/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [377/430] Analyzing https://github.com/g-tejas/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/g-tejas/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/g-tejas/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tanjiajiajun/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kervyntan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tanjiajiajun/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tanjiajiajun/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kervyntan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [378/430] Analyzing https://github.com/RyanNgWH/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kervyntan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kervyntan/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/g-tejas/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xinen26/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [377/430] Analyzing https://github.com/g-tejas/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xinen26/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/g-tejas/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/g-tejas/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jonpwk/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RyanNgWH/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gerteck/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [378/430] Analyzing https://github.com/jonpwk/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/drustanyjt/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [379/430] Analyzing https://github.com/RyanNgWH/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yeoshuheng/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gerteck/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/drustanyjt/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/angsongyee/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jonpwk/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jonpwk/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/angsongyee/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/RyanNgWH/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/RyanNgWH/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [379/430] Analyzing https://github.com/yeoshuheng/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yeoshuheng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yeoshuheng/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/g-tejas/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/g-tejas/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/g-tejas/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [380/430] Analyzing https://github.com/jonpwk/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jonpwk/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jonpwk/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AndrewOng2066/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AndrewOng2066/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AndrewOng2066/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [380/430] Analyzing https://github.com/yeoshuheng/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [381/430] Analyzing https://github.com/gerteck/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gerteck/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gerteck/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jonpwk/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jonpwk/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yeoshuheng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yeoshuheng/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jonpwk/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/g-tejas/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xinen26/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alfaloo/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [381/430] Analyzing https://github.com/xinen26/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/g-tejas/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alfaloo/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/g-tejas/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [382/430] Analyzing https://github.com/xinen26/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yeoshuheng/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xinen26/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xinen26/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/drustanyjt/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gerteck/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/angsongyee/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [382/430] Analyzing https://github.com/drustanyjt/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ivan24004/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cheahTJ/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bertrandong/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bertrandong/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cheahTJ/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ivan24004/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/drustanyjt/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/drustanyjt/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yeoshuheng/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/RyanNgWH/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RyanNgWH/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yeoshuheng/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RyanNgWH/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yeoshuheng/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [383/430] Analyzing https://github.com/angsongyee/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/angsongyee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/angsongyee/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yeoshuheng/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yeoshuheng/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [384/430] Analyzing https://github.com/gerteck/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gerteck/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gerteck/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xinen26/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alfaloo/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/headcube1/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/headcube1/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xinen26/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xinen26/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RyanNgWH/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RyanNgWH/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [384/430] Analyzing https://github.com/drustanyjt/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/drustanyjt/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/drustanyjt/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gerteck/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gerteck/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gerteck/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [385/430] Analyzing https://github.com/alfaloo/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/alfaloo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/alfaloo/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bertrandong/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/pjanthony2001/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cheahTJ/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/pjanthony2001/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ruijietay/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ruijietay/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ivan24004/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sindhurajain/ip.git... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/drustanyjt/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sindhurajain/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/drustanyjt/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/drustanyjt/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [386/430] Analyzing https://github.com/bertrandong/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bertrandong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bertrandong/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/angsongyee/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xinen26/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/angsongyee/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/angsongyee/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xinen26/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [386/430] Analyzing https://github.com/ivan24004/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xinen26/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [387/430] Analyzing https://github.com/cheahTJ/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cheahTJ/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cheahTJ/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gerteck/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gerteck/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gerteck/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [388/430] Analyzing https://github.com/ivan24004/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ivan24004/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ivan24004/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/headcube1/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ragnapop/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ragnapop/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/drustanyjt/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cheahTJ/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cheahTJ/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/drustanyjt/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/drustanyjt/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [388/430] Analyzing https://github.com/bertrandong/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bertrandong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bertrandong/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/alfaloo/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ruijietay/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alfaloo/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alfaloo/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nobodyishappy/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nobodyishappy/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [389/430] Analyzing https://github.com/headcube1/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sindhurajain/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bertrandong/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/pjanthony2001/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Pughal77/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/headcube1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/headcube1/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/PateShin/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Pughal77/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bertrandong/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PateShin/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bertrandong/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cheahTJ/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [390/430] Analyzing https://github.com/ruijietay/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cheahTJ/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cheahTJ/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [391/430] Analyzing https://github.com/sindhurajain/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ruijietay/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ruijietay/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sindhurajain/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sindhurajain/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alfaloo/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [389/430] Analyzing https://github.com/headcube1/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alfaloo/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ivan24004/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [390/430] Analyzing https://github.com/sindhurajain/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/headcube1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/headcube1/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ivan24004/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ivan24004/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sindhurajain/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sindhurajain/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [391/430] Analyzing https://github.com/ruijietay/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ruijietay/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ruijietay/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bertrandong/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bertrandong/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bertrandong/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [392/430] Analyzing https://github.com/pjanthony2001/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ragnapop/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jayllo-c/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jayllo-c/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/pjanthony2001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/pjanthony2001/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/headcube1/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/headcube1/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/headcube1/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [393/430] Analyzing https://github.com/Ragnapop/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nobodyishappy/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ragnapop/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ragnapop/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gosongying/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PateShin/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gosongying/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/biinnnggggg/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Pughal77/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/biinnnggggg/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ShanylOng/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ShanylOng/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sindhurajain/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sindhurajain/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sindhurajain/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [394/430] Analyzing https://github.com/nobodyishappy/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nobodyishappy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nobodyishappy/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ruijietay/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jayllo-c/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sindhurajain/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [394/430] Analyzing https://github.com/Pughal77/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Pughal77/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Pughal77/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Ragnapop/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KinTatHo/ip.git... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ruijietay/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ragnapop/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KinTatHo/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ragnapop/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [395/430] Analyzing https://github.com/nobodyishappy/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ruijietay/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [395/430] Analyzing https://github.com/PateShin/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ruijietay/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [396/430] Analyzing https://github.com/Pughal77/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [396/430] Analyzing https://github.com/PateShin/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nobodyishappy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nobodyishappy/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PateShin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PateShin/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Pughal77/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Pughal77/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/pjanthony2001/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gosongying/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Rishit02/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Rishit02/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ShanylOng/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/biinnnggggg/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/pjanthony2001/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rahhulleee/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/pjanthony2001/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chaaaaun/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [397/430] Analyzing https://github.com/jayllo-c/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rahhulleee/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chaaaaun/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jayllo-c/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jayllo-c/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Pughal77/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nobodyishappy/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Pughal77/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Pughal77/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [397/430] Analyzing https://github.com/jayllo-c/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/pjanthony2001/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jayllo-c/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jayllo-c/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/pjanthony2001/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/pjanthony2001/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos INFO: [398/430] Analyzing https://github.com/gosongying/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nobodyishappy/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nobodyishappy/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [399/430] Analyzing https://github.com/ShanylOng/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/gosongying/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/gosongying/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ShanylOng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ShanylOng/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KinTatHo/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JerryO3/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JerryO3/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nobodyishappy/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/PateShin/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ShanylOng/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jayllo-c/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ShanylOng/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ShanylOng/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/PateShin/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [400/430] Analyzing https://github.com/biinnnggggg/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PateShin/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [401/430] Analyzing https://github.com/KinTatHo/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jayllo-c/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jayllo-c/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nobodyishappy/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PateShin/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nobodyishappy/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [399/430] Analyzing https://github.com/biinnnggggg/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [400/430] Analyzing https://github.com/ShanylOng/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [401/430] Analyzing https://github.com/KinTatHo/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ShanylOng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ShanylOng/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/biinnnggggg/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/biinnnggggg/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/KinTatHo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/KinTatHo/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Rishit02/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rahhulleee/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [402/430] Analyzing https://github.com/rahhulleee/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tzaph/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RingoftheKing/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tzaph/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RingoftheKing/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chaaaaun/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ashleyclx/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rahhulleee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rahhulleee/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ashleyclx/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ShanylOng/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ShanylOng/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ShanylOng/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [402/430] Analyzing https://github.com/Rishit02/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Rishit02/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Rishit02/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/gosongying/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/gosongying/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/gosongying/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [403/430] Analyzing https://github.com/Rishit02/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [403/430] Analyzing https://github.com/chaaaaun/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Rishit02/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/KinTatHo/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JerryO3/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Rishit02/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Rishit02/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chaaaaun/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chaaaaun/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Rishit02/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Rishit02/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [404/430] Analyzing https://github.com/rahhulleee/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/KinTatHo/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/laney0808/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/laney0808/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/KinTatHo/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [404/430] Analyzing https://github.com/chaaaaun/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [405/430] Analyzing https://github.com/JerryO3/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rahhulleee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rahhulleee/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JerryO3/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JerryO3/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/biinnnggggg/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chaaaaun/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chaaaaun/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/biinnnggggg/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rahhulleee/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/biinnnggggg/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [405/430] Analyzing https://github.com/JerryO3/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rahhulleee/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rahhulleee/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tzaph/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ashleyclx/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NatLeong/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos INFO: [406/430] Analyzing https://github.com/tzaph/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JerryO3/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JerryO3/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jajared/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NatLeong/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tzaph/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tzaph/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jajared/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RingoftheKing/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kailashgautham/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kailashgautham/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Rishit02/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Rishit02/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Rishit02/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [407/430] Analyzing https://github.com/ashleyclx/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ashleyclx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ashleyclx/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/laney0808/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/J-wang-CSMA/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/J-wang-CSMA/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chaaaaun/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chaaaaun/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chaaaaun/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [408/430] Analyzing https://github.com/RingoftheKing/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tzaph/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JerryO3/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [407/430] Analyzing https://github.com/RingoftheKing/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rahhulleee/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/RingoftheKing/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/RingoftheKing/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tzaph/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rahhulleee/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rahhulleee/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [408/430] Analyzing https://github.com/ashleyclx/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JerryO3/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ashleyclx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ashleyclx/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JerryO3/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tzaph/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JerryO3/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos INFO: [409/430] Analyzing https://github.com/laney0808/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tzaph/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/laney0808/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/laney0808/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ashleyclx/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NatLeong/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ashleyclx/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jajared/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kinjalagarwal1810/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [410/430] Analyzing https://github.com/NatLeong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ashleyclx/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [411/430] Analyzing https://github.com/Jajared/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NewtonKoh/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kinjalagarwal1810/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NewtonKoh/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NatLeong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NatLeong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tzaph/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tzaph/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [410/430] Analyzing https://github.com/Jajared/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jajared/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jajared/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kailashgautham/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/UdhayaShan1/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/UdhayaShan1/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/laney0808/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/RingoftheKing/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/laney0808/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/laney0808/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/laney0808/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [412/430] Analyzing https://github.com/kailashgautham/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/RingoftheKing/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/RingoftheKing/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [411/430] Analyzing https://github.com/NatLeong/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [412/430] Analyzing https://github.com/kailashgautham/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kailashgautham/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kailashgautham/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NatLeong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NatLeong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NatLeong/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/J-wang-CSMA/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NatLeong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NatLeong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ashleyclx/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ashleyclx/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ashleyclx/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos INFO: [413/430] Analyzing https://github.com/J-wang-CSMA/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanqinyong/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanqinyong/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/J-wang-CSMA/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/J-wang-CSMA/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NatLeong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Jajared/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NatLeong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NatLeong/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [414/430] Analyzing https://github.com/kinjalagarwal1810/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Jajared/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Jajared/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NewtonKoh/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kinjalagarwal1810/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kinjalagarwal1810/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [415/430] Analyzing https://github.com/UdhayaShan1/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/UdhayaShan1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/UdhayaShan1/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kailashgautham/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/theman-oj10/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [414/430] Analyzing https://github.com/NewtonKoh/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/theman-oj10/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kinjalagarwal1810/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kailashgautham/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kailashgautham/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [415/430] Analyzing https://github.com/kinjalagarwal1810/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/c-j-lh/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [416/430] Analyzing https://github.com/NewtonKoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NewtonKoh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NewtonKoh/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/c-j-lh/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/UdhayaShan1/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [416/430] Analyzing https://github.com/UdhayaShan1/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kinjalagarwal1810/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jovantanyk/ip.git... -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kinjalagarwal1810/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jovantanyk/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/UdhayaShan1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/UdhayaShan1/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NewtonKoh/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NewtonKoh/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NewtonKoh/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/J-wang-CSMA/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kinjalagarwal1810/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/J-wang-CSMA/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/J-wang-CSMA/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanqinyong/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kinjalagarwal1810/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kinjalagarwal1810/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos INFO: [417/430] Analyzing https://github.com/tanqinyong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kappaccinoh/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kappaccinoh/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [418/430] Analyzing https://github.com/jovantanyk/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NewtonKoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tanqinyong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tanqinyong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kinjalagarwal1810/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kinjalagarwal1810/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kinjalagarwal1810/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jovantanyk/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jovantanyk/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NewtonKoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NewtonKoh/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/UdhayaShan1/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/theman-oj10/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [419/430] Analyzing https://github.com/theman-oj10/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/UdhayaShan1/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [418/430] Analyzing https://github.com/theman-oj10/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/itstrueitstrueitsrealitsreal/ip.git... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/UdhayaShan1/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/itstrueitstrueitsrealitsreal/ip.git to complete... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/theman-oj10/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/theman-oj10/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanqinyong/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanqinyong/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/c-j-lh/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanqinyong/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/agreatdayy/ip.git... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [419/430] Analyzing https://github.com/c-j-lh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/agreatdayy/ip.git to complete... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jovantanyk/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SampsonYe1999/ip.git... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [420/430] Analyzing https://github.com/jovantanyk/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/UdhayaShan1/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [420/430] Analyzing https://github.com/c-j-lh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/c-j-lh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/c-j-lh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SampsonYe1999/ip.git to complete... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jovantanyk/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jovantanyk/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jovantanyk/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/c-j-lh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/theman-oj10/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jovantanyk/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/c-j-lh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jovantanyk/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/c-j-lh/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/theman-oj10/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/theman-oj10/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kappaccinoh/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos INFO: [421/430] Analyzing https://github.com/Kappaccinoh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/The-Dudeski/ip.git... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/The-Dudeski/ip.git to complete... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jovantanyk/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [422/430] Analyzing https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanqinyong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kappaccinoh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kappaccinoh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jovantanyk/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jovantanyk/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/itstrueitstrueitsrealitsreal/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "The-Dudeski/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/The-Dudeski/ip.git' 'repos/The-Dudeski_ip/ip_bare' on path . : -Cloning into bare repository 'repos/The-Dudeski_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [422/430] Analyzing https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/itstrueitstrueitsrealitsreal/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kappaccinoh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kappaccinoh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/agreatdayy/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kappaccinoh/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [423/430] Analyzing https://github.com/agreatdayy/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/agreatdayy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/agreatdayy/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SampsonYe1999/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [424/430] Analyzing https://github.com/SampsonYe1999/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanqinyong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanqinyong/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [423/430] Analyzing https://github.com/SampsonYe1999/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/theman-oj10/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SampsonYe1999/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SampsonYe1999/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/agreatdayy/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/agreatdayy/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/agreatdayy/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/theman-oj10/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/theman-oj10/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [424/430] Analyzing https://github.com/agreatdayy/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/agreatdayy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/agreatdayy/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SampsonYe1999/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SampsonYe1999/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SampsonYe1999/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kappaccinoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/agreatdayy/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kappaccinoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kappaccinoh/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/agreatdayy/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/agreatdayy/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/itstrueitstrueitsrealitsreal/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator generateReposReport +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator generateReposReport INFO: The report is generated at /home/runner/work/ip-dashboard/ip-dashboard/reposense-report -Feb 07, 2024 1:16:32 AM reposense.RepoSense main -INFO: Elapsed processing time: 50.88 second(s) +Feb 07, 2024 2:39:56 AM reposense.RepoSense main +INFO: Elapsed processing time: 48.10 second(s) diff --git a/summary.json b/summary.json index 3e87934a..1bbe53c7 100644 --- a/summary.json +++ b/summary.json @@ -1 +1 @@ -{"repoSenseVersion":"29903e3124","reportGeneratedTime":"Wed Feb 7 09:15:43 2024 UTC+08:00","reportGenerationTime":" 49.79 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2103 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/darryl-chan/ip.git","repoName":"ip","organization":"darryl-chan","domainName":"github"},"branch":"master","displayName":"darryl-chan/ip[master]","outputFolderName":"darryl-chan_ip_master"},{"location":{"location":"https://github.com/gowthaman-01/ip.git","repoName":"ip","organization":"gowthaman-01","domainName":"github"},"branch":"master","displayName":"gowthaman-01/ip[master]","outputFolderName":"gowthaman-01_ip_master"},{"location":{"location":"https://github.com/ChrisHo1341/ip.git","repoName":"ip","organization":"ChrisHo1341","domainName":"github"},"branch":"master","displayName":"ChrisHo1341/ip[master]","outputFolderName":"ChrisHo1341_ip_master"},{"location":{"location":"https://github.com/sebin0817/ip.git","repoName":"ip","organization":"sebin0817","domainName":"github"},"branch":"master","displayName":"sebin0817/ip[master]","outputFolderName":"sebin0817_ip_master"},{"location":{"location":"https://github.com/tanjiajiajun/ip.git","repoName":"ip","organization":"tanjiajiajun","domainName":"github"},"branch":"master","displayName":"tanjiajiajun/ip[master]","outputFolderName":"tanjiajiajun_ip_master"},{"location":{"location":"https://github.com/Arixeyeion/ip.git","repoName":"ip","organization":"Arixeyeion","domainName":"github"},"branch":"master","displayName":"Arixeyeion/ip[master]","outputFolderName":"Arixeyeion_ip_master"},{"location":{"location":"https://github.com/jeremiahlzz/ip.git","repoName":"ip","organization":"jeremiahlzz","domainName":"github"},"branch":"master","displayName":"jeremiahlzz/ip[master]","outputFolderName":"jeremiahlzz_ip_master"},{"location":{"location":"https://github.com/joenus/ip.git","repoName":"ip","organization":"joenus","domainName":"github"},"branch":"master","displayName":"joenus/ip[master]","outputFolderName":"joenus_ip_master"},{"location":{"location":"https://github.com/xinen26/ip.git","repoName":"ip","organization":"xinen26","domainName":"github"},"branch":"master","displayName":"xinen26/ip[master]","outputFolderName":"xinen26_ip_master"},{"location":{"location":"https://github.com/matthewken19/ip.git","repoName":"ip","organization":"matthewken19","domainName":"github"},"branch":"master","displayName":"matthewken19/ip[master]","outputFolderName":"matthewken19_ip_master"},{"location":{"location":"https://github.com/YuZizhen/ip.git","repoName":"ip","organization":"YuZizhen","domainName":"github"},"branch":"master","displayName":"YuZizhen/ip[master]","outputFolderName":"YuZizhen_ip_master"},{"location":{"location":"https://github.com/marclamp/ip.git","repoName":"ip","organization":"marclamp","domainName":"github"},"branch":"master","displayName":"marclamp/ip[master]","outputFolderName":"marclamp_ip_master"},{"location":{"location":"https://github.com/JerryWang0000/ip.git","repoName":"ip","organization":"JerryWang0000","domainName":"github"},"branch":"master","displayName":"JerryWang0000/ip[master]","outputFolderName":"JerryWang0000_ip_master"},{"location":{"location":"https://github.com/fy17ohhh/ip.git","repoName":"ip","organization":"fy17ohhh","domainName":"github"},"branch":"master","displayName":"fy17ohhh/ip[master]","outputFolderName":"fy17ohhh_ip_master"},{"location":{"location":"https://github.com/lihaoquan/ip.git","repoName":"ip","organization":"lihaoquan","domainName":"github"},"branch":"master","displayName":"lihaoquan/ip[master]","outputFolderName":"lihaoquan_ip_master"},{"location":{"location":"https://github.com/guohuang88/ip.git","repoName":"ip","organization":"guohuang88","domainName":"github"},"branch":"master","displayName":"guohuang88/ip[master]","outputFolderName":"guohuang88_ip_master"},{"location":{"location":"https://github.com/redcolorbicycle/ip.git","repoName":"ip","organization":"redcolorbicycle","domainName":"github"},"branch":"master","displayName":"redcolorbicycle/ip[master]","outputFolderName":"redcolorbicycle_ip_master"},{"location":{"location":"https://github.com/Jerome-j/ip.git","repoName":"ip","organization":"Jerome-j","domainName":"github"},"branch":"master","displayName":"Jerome-j/ip[master]","outputFolderName":"Jerome-j_ip_master"},{"location":{"location":"https://github.com/sethteo/ip.git","repoName":"ip","organization":"sethteo","domainName":"github"},"branch":"master","displayName":"sethteo/ip[master]","outputFolderName":"sethteo_ip_master"},{"location":{"location":"https://github.com/TopKec/ip.git","repoName":"ip","organization":"TopKec","domainName":"github"},"branch":"master","displayName":"TopKec/ip[master]","outputFolderName":"TopKec_ip_master"},{"location":{"location":"https://github.com/joelgoh1/ip.git","repoName":"ip","organization":"joelgoh1","domainName":"github"},"branch":"master","displayName":"joelgoh1/ip[master]","outputFolderName":"joelgoh1_ip_master"},{"location":{"location":"https://github.com/chewbum/ip.git","repoName":"ip","organization":"chewbum","domainName":"github"},"branch":"master","displayName":"chewbum/ip[master]","outputFolderName":"chewbum_ip_master"},{"location":{"location":"https://github.com/timothysashimi/ip.git","repoName":"ip","organization":"timothysashimi","domainName":"github"},"branch":"master","displayName":"timothysashimi/ip[master]","outputFolderName":"timothysashimi_ip_master"},{"location":{"location":"https://github.com/beefsausagee/ip.git","repoName":"ip","organization":"beefsausagee","domainName":"github"},"branch":"master","displayName":"beefsausagee/ip[master]","outputFolderName":"beefsausagee_ip_master"},{"location":{"location":"https://github.com/jaejayrome/ip.git","repoName":"ip","organization":"jaejayrome","domainName":"github"},"branch":"master","displayName":"jaejayrome/ip[master]","outputFolderName":"jaejayrome_ip_master"},{"location":{"location":"https://github.com/KhoonSun47/ip.git","repoName":"ip","organization":"KhoonSun47","domainName":"github"},"branch":"master","displayName":"KhoonSun47/ip[master]","outputFolderName":"KhoonSun47_ip_master"},{"location":{"location":"https://github.com/Dethada/ip.git","repoName":"ip","organization":"Dethada","domainName":"github"},"branch":"master","displayName":"Dethada/ip[master]","outputFolderName":"Dethada_ip_master"},{"location":{"location":"https://github.com/AL-ZT/ip.git","repoName":"ip","organization":"AL-ZT","domainName":"github"},"branch":"master","displayName":"AL-ZT/ip[master]","outputFolderName":"AL-ZT_ip_master"},{"location":{"location":"https://github.com/Javiery3889/ip.git","repoName":"ip","organization":"Javiery3889","domainName":"github"},"branch":"master","displayName":"Javiery3889/ip[master]","outputFolderName":"Javiery3889_ip_master"},{"location":{"location":"https://github.com/garywongkai/ip.git","repoName":"ip","organization":"garywongkai","domainName":"github"},"branch":"master","displayName":"garywongkai/ip[master]","outputFolderName":"garywongkai_ip_master"},{"location":{"location":"https://github.com/ys112/ip.git","repoName":"ip","organization":"ys112","domainName":"github"},"branch":"master","displayName":"ys112/ip[master]","outputFolderName":"ys112_ip_master"},{"location":{"location":"https://github.com/jmsandiegoo/ip.git","repoName":"ip","organization":"jmsandiegoo","domainName":"github"},"branch":"master","displayName":"jmsandiegoo/ip[master]","outputFolderName":"jmsandiegoo_ip_master"},{"location":{"location":"https://github.com/KohGuanZeh/ip.git","repoName":"ip","organization":"KohGuanZeh","domainName":"github"},"branch":"master","displayName":"KohGuanZeh/ip[master]","outputFolderName":"KohGuanZeh_ip_master"},{"location":{"location":"https://github.com/felixchanyy/ip.git","repoName":"ip","organization":"felixchanyy","domainName":"github"},"branch":"master","displayName":"felixchanyy/ip[master]","outputFolderName":"felixchanyy_ip_master"},{"location":{"location":"https://github.com/tanqinyong/ip.git","repoName":"ip","organization":"tanqinyong","domainName":"github"},"branch":"master","displayName":"tanqinyong/ip[master]","outputFolderName":"tanqinyong_ip_master"},{"location":{"location":"https://github.com/Hwww23/ip.git","repoName":"ip","organization":"Hwww23","domainName":"github"},"branch":"master","displayName":"Hwww23/ip[master]","outputFolderName":"Hwww23_ip_master"},{"location":{"location":"https://github.com/zengzihui/ip.git","repoName":"ip","organization":"zengzihui","domainName":"github"},"branch":"master","displayName":"zengzihui/ip[master]","outputFolderName":"zengzihui_ip_master"},{"location":{"location":"https://github.com/Pluiexo/ip.git","repoName":"ip","organization":"Pluiexo","domainName":"github"},"branch":"master","displayName":"Pluiexo/ip[master]","outputFolderName":"Pluiexo_ip_master"},{"location":{"location":"https://github.com/yap-zong-xin/ip.git","repoName":"ip","organization":"yap-zong-xin","domainName":"github"},"branch":"master","displayName":"yap-zong-xin/ip[master]","outputFolderName":"yap-zong-xin_ip_master"},{"location":{"location":"https://github.com/JonChong98/ip.git","repoName":"ip","organization":"JonChong98","domainName":"github"},"branch":"master","displayName":"JonChong98/ip[master]","outputFolderName":"JonChong98_ip_master"},{"location":{"location":"https://github.com/lokidoki102/ip.git","repoName":"ip","organization":"lokidoki102","domainName":"github"},"branch":"master","displayName":"lokidoki102/ip[master]","outputFolderName":"lokidoki102_ip_master"},{"location":{"location":"https://github.com/choowengyan/ip.git","repoName":"ip","organization":"choowengyan","domainName":"github"},"branch":"master","displayName":"choowengyan/ip[master]","outputFolderName":"choowengyan_ip_master"},{"location":{"location":"https://github.com/SherisseTJW/ip.git","repoName":"ip","organization":"SherisseTJW","domainName":"github"},"branch":"master","displayName":"SherisseTJW/ip[master]","outputFolderName":"SherisseTJW_ip_master"},{"location":{"location":"https://github.com/iynixil/ip.git","repoName":"ip","organization":"iynixil","domainName":"github"},"branch":"master","displayName":"iynixil/ip[master]","outputFolderName":"iynixil_ip_master"},{"location":{"location":"https://github.com/whitesnowx/ip.git","repoName":"ip","organization":"whitesnowx","domainName":"github"},"branch":"master","displayName":"whitesnowx/ip[master]","outputFolderName":"whitesnowx_ip_master"},{"location":{"location":"https://github.com/AwJoey/ip.git","repoName":"ip","organization":"AwJoey","domainName":"github"},"branch":"master","displayName":"AwJoey/ip[master]","outputFolderName":"AwJoey_ip_master"},{"location":{"location":"https://github.com/rickkoh/ip.git","repoName":"ip","organization":"rickkoh","domainName":"github"},"branch":"master","displayName":"rickkoh/ip[master]","outputFolderName":"rickkoh_ip_master"},{"location":{"location":"https://github.com/caitlyntang/ip.git","repoName":"ip","organization":"caitlyntang","domainName":"github"},"branch":"master","displayName":"caitlyntang/ip[master]","outputFolderName":"caitlyntang_ip_master"},{"location":{"location":"https://github.com/tsulim/ip.git","repoName":"ip","organization":"tsulim","domainName":"github"},"branch":"master","displayName":"tsulim/ip[master]","outputFolderName":"tsulim_ip_master"},{"location":{"location":"https://github.com/Darylgolden/ip.git","repoName":"ip","organization":"Darylgolden","domainName":"github"},"branch":"master","displayName":"Darylgolden/ip[master]","outputFolderName":"Darylgolden_ip_master"},{"location":{"location":"https://github.com/biinnnggggg/ip.git","repoName":"ip","organization":"biinnnggggg","domainName":"github"},"branch":"master","displayName":"biinnnggggg/ip[master]","outputFolderName":"biinnnggggg_ip_master"},{"location":{"location":"https://github.com/Ma-Yirui/ip.git","repoName":"ip","organization":"Ma-Yirui","domainName":"github"},"branch":"master","displayName":"Ma-Yirui/ip[master]","outputFolderName":"Ma-Yirui_ip_master"},{"location":{"location":"https://github.com/itstrueitstrueitsrealitsreal/ip.git","repoName":"ip","organization":"itstrueitstrueitsrealitsreal","domainName":"github"},"branch":"master","displayName":"itstrueitstrueitsrealitsreal/ip[master]","outputFolderName":"itstrueitstrueitsrealitsreal_ip_master"},{"location":{"location":"https://github.com/vnnamng/ip.git","repoName":"ip","organization":"vnnamng","domainName":"github"},"branch":"master","displayName":"vnnamng/ip[master]","outputFolderName":"vnnamng_ip_master"},{"location":{"location":"https://github.com/minwaiphyo/ip.git","repoName":"ip","organization":"minwaiphyo","domainName":"github"},"branch":"master","displayName":"minwaiphyo/ip[master]","outputFolderName":"minwaiphyo_ip_master"},{"location":{"location":"https://github.com/amanzainal/ip.git","repoName":"ip","organization":"amanzainal","domainName":"github"},"branch":"master","displayName":"amanzainal/ip[master]","outputFolderName":"amanzainal_ip_master"},{"location":{"location":"https://github.com/raysonchia/ip.git","repoName":"ip","organization":"raysonchia","domainName":"github"},"branch":"master","displayName":"raysonchia/ip[master]","outputFolderName":"raysonchia_ip_master"},{"location":{"location":"https://github.com/zoebelle-pang/ip.git","repoName":"ip","organization":"zoebelle-pang","domainName":"github"},"branch":"master","displayName":"zoebelle-pang/ip[master]","outputFolderName":"zoebelle-pang_ip_master"},{"location":{"location":"https://github.com/DominicFuMJ/ip.git","repoName":"ip","organization":"DominicFuMJ","domainName":"github"},"branch":"master","displayName":"DominicFuMJ/ip[master]","outputFolderName":"DominicFuMJ_ip_master"},{"location":{"location":"https://github.com/NeoHW/ip.git","repoName":"ip","organization":"NeoHW","domainName":"github"},"branch":"master","displayName":"NeoHW/ip[master]","outputFolderName":"NeoHW_ip_master"},{"location":{"location":"https://github.com/ZhiWei1010/ip.git","repoName":"ip","organization":"ZhiWei1010","domainName":"github"},"branch":"master","displayName":"ZhiWei1010/ip[master]","outputFolderName":"ZhiWei1010_ip_master"},{"location":{"location":"https://github.com/tankh99/ip.git","repoName":"ip","organization":"tankh99","domainName":"github"},"branch":"master","displayName":"tankh99/ip[master]","outputFolderName":"tankh99_ip_master"},{"location":{"location":"https://github.com/YuvBindal/ip.git","repoName":"ip","organization":"YuvBindal","domainName":"github"},"branch":"master","displayName":"YuvBindal/ip[master]","outputFolderName":"YuvBindal_ip_master"},{"location":{"location":"https://github.com/chiralcentre/ip.git","repoName":"ip","organization":"chiralcentre","domainName":"github"},"branch":"master","displayName":"chiralcentre/ip[master]","outputFolderName":"chiralcentre_ip_master"},{"location":{"location":"https://github.com/cocoanautz/ip.git","repoName":"ip","organization":"cocoanautz","domainName":"github"},"branch":"master","displayName":"cocoanautz/ip[master]","outputFolderName":"cocoanautz_ip_master"},{"location":{"location":"https://github.com/peterXGD/ip.git","repoName":"ip","organization":"peterXGD","domainName":"github"},"branch":"master","displayName":"peterXGD/ip[master]","outputFolderName":"peterXGD_ip_master"},{"location":{"location":"https://github.com/martinng01/ip.git","repoName":"ip","organization":"martinng01","domainName":"github"},"branch":"master","displayName":"martinng01/ip[master]","outputFolderName":"martinng01_ip_master"},{"location":{"location":"https://github.com/pjanthony2001/ip.git","repoName":"ip","organization":"pjanthony2001","domainName":"github"},"branch":"master","displayName":"pjanthony2001/ip[master]","outputFolderName":"pjanthony2001_ip_master"},{"location":{"location":"https://github.com/yuechen2001/ip.git","repoName":"ip","organization":"yuechen2001","domainName":"github"},"branch":"master","displayName":"yuechen2001/ip[master]","outputFolderName":"yuechen2001_ip_master"},{"location":{"location":"https://github.com/SampsonYe1999/ip.git","repoName":"ip","organization":"SampsonYe1999","domainName":"github"},"branch":"master","displayName":"SampsonYe1999/ip[master]","outputFolderName":"SampsonYe1999_ip_master"},{"location":{"location":"https://github.com/ejnan/ip.git","repoName":"ip","organization":"ejnan","domainName":"github"},"branch":"master","displayName":"ejnan/ip[master]","outputFolderName":"ejnan_ip_master"},{"location":{"location":"https://github.com/c-j-lh/ip.git","repoName":"ip","organization":"c-j-lh","domainName":"github"},"branch":"master","displayName":"c-j-lh/ip[master]","outputFolderName":"c-j-lh_ip_master"},{"location":{"location":"https://github.com/xiaorui-ui/ip.git","repoName":"ip","organization":"xiaorui-ui","domainName":"github"},"branch":"master","displayName":"xiaorui-ui/ip[master]","outputFolderName":"xiaorui-ui_ip_master"},{"location":{"location":"https://github.com/qinboan/ip.git","repoName":"ip","organization":"qinboan","domainName":"github"},"branch":"master","displayName":"qinboan/ip[master]","outputFolderName":"qinboan_ip_master"},{"location":{"location":"https://github.com/qinxutan/ip.git","repoName":"ip","organization":"qinxutan","domainName":"github"},"branch":"master","displayName":"qinxutan/ip[master]","outputFolderName":"qinxutan_ip_master"},{"location":{"location":"https://github.com/S-Aishvarya/ip.git","repoName":"ip","organization":"S-Aishvarya","domainName":"github"},"branch":"master","displayName":"S-Aishvarya/ip[master]","outputFolderName":"S-Aishvarya_ip_master"},{"location":{"location":"https://github.com/zhekaiii/ip.git","repoName":"ip","organization":"zhekaiii","domainName":"github"},"branch":"master","displayName":"zhekaiii/ip[master]","outputFolderName":"zhekaiii_ip_master"},{"location":{"location":"https://github.com/taeewonnn/ip.git","repoName":"ip","organization":"taeewonnn","domainName":"github"},"branch":"master","displayName":"taeewonnn/ip[master]","outputFolderName":"taeewonnn_ip_master"},{"location":{"location":"https://github.com/hjungwoo01/ip.git","repoName":"ip","organization":"hjungwoo01","domainName":"github"},"branch":"master","displayName":"hjungwoo01/ip[master]","outputFolderName":"hjungwoo01_ip_master"},{"location":{"location":"https://github.com/ForAeons/ip.git","repoName":"ip","organization":"ForAeons","domainName":"github"},"branch":"master","displayName":"ForAeons/ip[master]","outputFolderName":"ForAeons_ip_master"},{"location":{"location":"https://github.com/minghowC/ip.git","repoName":"ip","organization":"minghowC","domainName":"github"},"branch":"master","displayName":"minghowC/ip[master]","outputFolderName":"minghowC_ip_master"},{"location":{"location":"https://github.com/E0735389/ip.git","repoName":"ip","organization":"E0735389","domainName":"github"},"branch":"master","displayName":"E0735389/ip[master]","outputFolderName":"E0735389_ip_master"},{"location":{"location":"https://github.com/Ty-stan0417/ip.git","repoName":"ip","organization":"Ty-stan0417","domainName":"github"},"branch":"master","displayName":"Ty-stan0417/ip[master]","outputFolderName":"Ty-stan0417_ip_master"},{"location":{"location":"https://github.com/dabzpengu/ip.git","repoName":"ip","organization":"dabzpengu","domainName":"github"},"branch":"master","displayName":"dabzpengu/ip[master]","outputFolderName":"dabzpengu_ip_master"},{"location":{"location":"https://github.com/rizkidelta/ip.git","repoName":"ip","organization":"rizkidelta","domainName":"github"},"branch":"master","displayName":"rizkidelta/ip[master]","outputFolderName":"rizkidelta_ip_master"},{"location":{"location":"https://github.com/wilsonwid/ip.git","repoName":"ip","organization":"wilsonwid","domainName":"github"},"branch":"master","displayName":"wilsonwid/ip[master]","outputFolderName":"wilsonwid_ip_master"},{"location":{"location":"https://github.com/chiageng/ip.git","repoName":"ip","organization":"chiageng","domainName":"github"},"branch":"master","displayName":"chiageng/ip[master]","outputFolderName":"chiageng_ip_master"},{"location":{"location":"https://github.com/julia-cp/ip.git","repoName":"ip","organization":"julia-cp","domainName":"github"},"branch":"master","displayName":"julia-cp/ip[master]","outputFolderName":"julia-cp_ip_master"},{"location":{"location":"https://github.com/ZHANGTIANYAO1/ip.git","repoName":"ip","organization":"ZHANGTIANYAO1","domainName":"github"},"branch":"master","displayName":"ZHANGTIANYAO1/ip[master]","outputFolderName":"ZHANGTIANYAO1_ip_master"},{"location":{"location":"https://github.com/tahsinhasem/ip.git","repoName":"ip","organization":"tahsinhasem","domainName":"github"},"branch":"master","displayName":"tahsinhasem/ip[master]","outputFolderName":"tahsinhasem_ip_master"},{"location":{"location":"https://github.com/LifHoshi/ip.git","repoName":"ip","organization":"LifHoshi","domainName":"github"},"branch":"master","displayName":"LifHoshi/ip[master]","outputFolderName":"LifHoshi_ip_master"},{"location":{"location":"https://github.com/ananya21/ip.git","repoName":"ip","organization":"ananya21","domainName":"github"},"branch":"master","displayName":"ananya21/ip[master]","outputFolderName":"ananya21_ip_master"},{"location":{"location":"https://github.com/acekhoon/ip.git","repoName":"ip","organization":"acekhoon","domainName":"github"},"branch":"master","displayName":"acekhoon/ip[master]","outputFolderName":"acekhoon_ip_master"},{"location":{"location":"https://github.com/willowisp01/ip.git","repoName":"ip","organization":"willowisp01","domainName":"github"},"branch":"master","displayName":"willowisp01/ip[master]","outputFolderName":"willowisp01_ip_master"},{"location":{"location":"https://github.com/Jajared/ip.git","repoName":"ip","organization":"Jajared","domainName":"github"},"branch":"master","displayName":"Jajared/ip[master]","outputFolderName":"Jajared_ip_master"},{"location":{"location":"https://github.com/JerryO3/ip.git","repoName":"ip","organization":"JerryO3","domainName":"github"},"branch":"master","displayName":"JerryO3/ip[master]","outputFolderName":"JerryO3_ip_master"},{"location":{"location":"https://github.com/cyqjoseph/ip.git","repoName":"ip","organization":"cyqjoseph","domainName":"github"},"branch":"master","displayName":"cyqjoseph/ip[master]","outputFolderName":"cyqjoseph_ip_master"},{"location":{"location":"https://github.com/jieqiboh/ip.git","repoName":"ip","organization":"jieqiboh","domainName":"github"},"branch":"master","displayName":"jieqiboh/ip[master]","outputFolderName":"jieqiboh_ip_master"},{"location":{"location":"https://github.com/theman-oj10/ip.git","repoName":"ip","organization":"theman-oj10","domainName":"github"},"branch":"master","displayName":"theman-oj10/ip[master]","outputFolderName":"theman-oj10_ip_master"},{"location":{"location":"https://github.com/owenong1/ip.git","repoName":"ip","organization":"owenong1","domainName":"github"},"branch":"master","displayName":"owenong1/ip[master]","outputFolderName":"owenong1_ip_master"},{"location":{"location":"https://github.com/aureliony/ip.git","repoName":"ip","organization":"aureliony","domainName":"github"},"branch":"master","displayName":"aureliony/ip[master]","outputFolderName":"aureliony_ip_master"},{"location":{"location":"https://github.com/yisiox/ip.git","repoName":"ip","organization":"yisiox","domainName":"github"},"branch":"master","displayName":"yisiox/ip[master]","outputFolderName":"yisiox_ip_master"},{"location":{"location":"https://github.com/Darkarche3/ip.git","repoName":"ip","organization":"Darkarche3","domainName":"github"},"branch":"master","displayName":"Darkarche3/ip[master]","outputFolderName":"Darkarche3_ip_master"},{"location":{"location":"https://github.com/Jolonauh/ip.git","repoName":"ip","organization":"Jolonauh","domainName":"github"},"branch":"master","displayName":"Jolonauh/ip[master]","outputFolderName":"Jolonauh_ip_master"},{"location":{"location":"https://github.com/kervyntan/ip.git","repoName":"ip","organization":"kervyntan","domainName":"github"},"branch":"master","displayName":"kervyntan/ip[master]","outputFolderName":"kervyntan_ip_master"},{"location":{"location":"https://github.com/yashpola/ip.git","repoName":"ip","organization":"yashpola","domainName":"github"},"branch":"master","displayName":"yashpola/ip[master]","outputFolderName":"yashpola_ip_master"},{"location":{"location":"https://github.com/wongkj12/ip.git","repoName":"ip","organization":"wongkj12","domainName":"github"},"branch":"master","displayName":"wongkj12/ip[master]","outputFolderName":"wongkj12_ip_master"},{"location":{"location":"https://github.com/tituschewxj/ip.git","repoName":"ip","organization":"tituschewxj","domainName":"github"},"branch":"master","displayName":"tituschewxj/ip[master]","outputFolderName":"tituschewxj_ip_master"},{"location":{"location":"https://github.com/Zer0Legion/ip.git","repoName":"ip","organization":"Zer0Legion","domainName":"github"},"branch":"master","displayName":"Zer0Legion/ip[master]","outputFolderName":"Zer0Legion_ip_master"},{"location":{"location":"https://github.com/g-tejas/ip.git","repoName":"ip","organization":"g-tejas","domainName":"github"},"branch":"master","displayName":"g-tejas/ip[master]","outputFolderName":"g-tejas_ip_master"},{"location":{"location":"https://github.com/legionlegion/ip.git","repoName":"ip","organization":"legionlegion","domainName":"github"},"branch":"master","displayName":"legionlegion/ip[master]","outputFolderName":"legionlegion_ip_master"},{"location":{"location":"https://github.com/tanguoyang/ip.git","repoName":"ip","organization":"tanguoyang","domainName":"github"},"branch":"master","displayName":"tanguoyang/ip[master]","outputFolderName":"tanguoyang_ip_master"},{"location":{"location":"https://github.com/jovantanyk/ip.git","repoName":"ip","organization":"jovantanyk","domainName":"github"},"branch":"master","displayName":"jovantanyk/ip[master]","outputFolderName":"jovantanyk_ip_master"},{"location":{"location":"https://github.com/Xilef121/ip.git","repoName":"ip","organization":"Xilef121","domainName":"github"},"branch":"master","displayName":"Xilef121/ip[master]","outputFolderName":"Xilef121_ip_master"},{"location":{"location":"https://github.com/ziiqii/ip.git","repoName":"ip","organization":"ziiqii","domainName":"github"},"branch":"master","displayName":"ziiqii/ip[master]","outputFolderName":"ziiqii_ip_master"},{"location":{"location":"https://github.com/Bandov/ip.git","repoName":"ip","organization":"Bandov","domainName":"github"},"branch":"master","displayName":"Bandov/ip[master]","outputFolderName":"Bandov_ip_master"},{"location":{"location":"https://github.com/appleraincoat/ip.git","repoName":"ip","organization":"appleraincoat","domainName":"github"},"branch":"master","displayName":"appleraincoat/ip[master]","outputFolderName":"appleraincoat_ip_master"},{"location":{"location":"https://github.com/belligerentbeagle/ip.git","repoName":"ip","organization":"belligerentbeagle","domainName":"github"},"branch":"master","displayName":"belligerentbeagle/ip[master]","outputFolderName":"belligerentbeagle_ip_master"},{"location":{"location":"https://github.com/limrik/ip.git","repoName":"ip","organization":"limrik","domainName":"github"},"branch":"master","displayName":"limrik/ip[master]","outputFolderName":"limrik_ip_master"},{"location":{"location":"https://github.com/Tsenrae/ip.git","repoName":"ip","organization":"Tsenrae","domainName":"github"},"branch":"master","displayName":"Tsenrae/ip[master]","outputFolderName":"Tsenrae_ip_master"},{"location":{"location":"https://github.com/nichee/ip.git","repoName":"ip","organization":"nichee","domainName":"github"},"branch":"master","displayName":"nichee/ip[master]","outputFolderName":"nichee_ip_master"},{"location":{"location":"https://github.com/justincred/ip.git","repoName":"ip","organization":"justincred","domainName":"github"},"branch":"master","displayName":"justincred/ip[master]","outputFolderName":"justincred_ip_master"},{"location":{"location":"https://github.com/Tanzhiheng26/ip.git","repoName":"ip","organization":"Tanzhiheng26","domainName":"github"},"branch":"master","displayName":"Tanzhiheng26/ip[master]","outputFolderName":"Tanzhiheng26_ip_master"},{"location":{"location":"https://github.com/cliftonchee/ip.git","repoName":"ip","organization":"cliftonchee","domainName":"github"},"branch":"master","displayName":"cliftonchee/ip[master]","outputFolderName":"cliftonchee_ip_master"},{"location":{"location":"https://github.com/SimHanKiong/ip.git","repoName":"ip","organization":"SimHanKiong","domainName":"github"},"branch":"master","displayName":"SimHanKiong/ip[master]","outputFolderName":"SimHanKiong_ip_master"},{"location":{"location":"https://github.com/ChrysanthemumT/ip.git","repoName":"ip","organization":"ChrysanthemumT","domainName":"github"},"branch":"master","displayName":"ChrysanthemumT/ip[master]","outputFolderName":"ChrysanthemumT_ip_master"},{"location":{"location":"https://github.com/jyztintan/ip.git","repoName":"ip","organization":"jyztintan","domainName":"github"},"branch":"master","displayName":"jyztintan/ip[master]","outputFolderName":"jyztintan_ip_master"},{"location":{"location":"https://github.com/ondretann/ip.git","repoName":"ip","organization":"ondretann","domainName":"github"},"branch":"master","displayName":"ondretann/ip[master]","outputFolderName":"ondretann_ip_master"},{"location":{"location":"https://github.com/bryanyee33/ip.git","repoName":"ip","organization":"bryanyee33","domainName":"github"},"branch":"master","displayName":"bryanyee33/ip[master]","outputFolderName":"bryanyee33_ip_master"},{"location":{"location":"https://github.com/chonghaoen/ip.git","repoName":"ip","organization":"chonghaoen","domainName":"github"},"branch":"master","displayName":"chonghaoen/ip[master]","outputFolderName":"chonghaoen_ip_master"},{"location":{"location":"https://github.com/ronnnnnnnnn/ip.git","repoName":"ip","organization":"ronnnnnnnnn","domainName":"github"},"branch":"master","displayName":"ronnnnnnnnn/ip[master]","outputFolderName":"ronnnnnnnnn_ip_master"},{"location":{"location":"https://github.com/ChuaZenKhoon/ip.git","repoName":"ip","organization":"ChuaZenKhoon","domainName":"github"},"branch":"master","displayName":"ChuaZenKhoon/ip[master]","outputFolderName":"ChuaZenKhoon_ip_master"},{"location":{"location":"https://github.com/gerteck/ip.git","repoName":"ip","organization":"gerteck","domainName":"github"},"branch":"master","displayName":"gerteck/ip[master]","outputFolderName":"gerteck_ip_master"},{"location":{"location":"https://github.com/ReganChoy/ip.git","repoName":"ip","organization":"ReganChoy","domainName":"github"},"branch":"master","displayName":"ReganChoy/ip[master]","outputFolderName":"ReganChoy_ip_master"},{"location":{"location":"https://github.com/zhuuyicheng/ip.git","repoName":"ip","organization":"zhuuyicheng","domainName":"github"},"branch":"master","displayName":"zhuuyicheng/ip[master]","outputFolderName":"zhuuyicheng_ip_master"},{"location":{"location":"https://github.com/chaaaaun/ip.git","repoName":"ip","organization":"chaaaaun","domainName":"github"},"branch":"master","displayName":"chaaaaun/ip[master]","outputFolderName":"chaaaaun_ip_master"},{"location":{"location":"https://github.com/ChuaZiLong/ip.git","repoName":"ip","organization":"ChuaZiLong","domainName":"github"},"branch":"master","displayName":"ChuaZiLong/ip[master]","outputFolderName":"ChuaZiLong_ip_master"},{"location":{"location":"https://github.com/Benson15912/ip.git","repoName":"ip","organization":"Benson15912","domainName":"github"},"branch":"master","displayName":"Benson15912/ip[master]","outputFolderName":"Benson15912_ip_master"},{"location":{"location":"https://github.com/c-wenlong/ip.git","repoName":"ip","organization":"c-wenlong","domainName":"github"},"branch":"master","displayName":"c-wenlong/ip[master]","outputFolderName":"c-wenlong_ip_master"},{"location":{"location":"https://github.com/gavin331/ip.git","repoName":"ip","organization":"gavin331","domainName":"github"},"branch":"master","displayName":"gavin331/ip[master]","outputFolderName":"gavin331_ip_master"},{"location":{"location":"https://github.com/CJerrong/ip.git","repoName":"ip","organization":"CJerrong","domainName":"github"},"branch":"master","displayName":"CJerrong/ip[master]","outputFolderName":"CJerrong_ip_master"},{"location":{"location":"https://github.com/ibnu2651/ip.git","repoName":"ip","organization":"ibnu2651","domainName":"github"},"branch":"master","displayName":"ibnu2651/ip[master]","outputFolderName":"ibnu2651_ip_master"},{"location":{"location":"https://github.com/1rbg/ip.git","repoName":"ip","organization":"1rbg","domainName":"github"},"branch":"master","displayName":"1rbg/ip[master]","outputFolderName":"1rbg_ip_master"},{"location":{"location":"https://github.com/alvinnzz/ip.git","repoName":"ip","organization":"alvinnzz","domainName":"github"},"branch":"master","displayName":"alvinnzz/ip[master]","outputFolderName":"alvinnzz_ip_master"},{"location":{"location":"https://github.com/whelan-low/ip.git","repoName":"ip","organization":"whelan-low","domainName":"github"},"branch":"master","displayName":"whelan-low/ip[master]","outputFolderName":"whelan-low_ip_master"},{"location":{"location":"https://github.com/ShanylOng/ip.git","repoName":"ip","organization":"ShanylOng","domainName":"github"},"branch":"master","displayName":"ShanylOng/ip[master]","outputFolderName":"ShanylOng_ip_master"},{"location":{"location":"https://github.com/ReflectiveObsidian/ip.git","repoName":"ip","organization":"ReflectiveObsidian","domainName":"github"},"branch":"master","displayName":"ReflectiveObsidian/ip[master]","outputFolderName":"ReflectiveObsidian_ip_master"},{"location":{"location":"https://github.com/kwuunnn/ip.git","repoName":"ip","organization":"kwuunnn","domainName":"github"},"branch":"master","displayName":"kwuunnn/ip[master]","outputFolderName":"kwuunnn_ip_master"},{"location":{"location":"https://github.com/billyhoce/ip.git","repoName":"ip","organization":"billyhoce","domainName":"github"},"branch":"master","displayName":"billyhoce/ip[master]","outputFolderName":"billyhoce_ip_master"},{"location":{"location":"https://github.com/Ryo-Seah/ip.git","repoName":"ip","organization":"Ryo-Seah","domainName":"github"},"branch":"master","displayName":"Ryo-Seah/ip[master]","outputFolderName":"Ryo-Seah_ip_master"},{"location":{"location":"https://github.com/meowwtama/ip.git","repoName":"ip","organization":"meowwtama","domainName":"github"},"branch":"master","displayName":"meowwtama/ip[master]","outputFolderName":"meowwtama_ip_master"},{"location":{"location":"https://github.com/gingerbreaf/ip.git","repoName":"ip","organization":"gingerbreaf","domainName":"github"},"branch":"master","displayName":"gingerbreaf/ip[master]","outputFolderName":"gingerbreaf_ip_master"},{"location":{"location":"https://github.com/yeoshuheng/ip.git","repoName":"ip","organization":"yeoshuheng","domainName":"github"},"branch":"master","displayName":"yeoshuheng/ip[master]","outputFolderName":"yeoshuheng_ip_master"},{"location":{"location":"https://github.com/shaunlxw/ip.git","repoName":"ip","organization":"shaunlxw","domainName":"github"},"branch":"master","displayName":"shaunlxw/ip[master]","outputFolderName":"shaunlxw_ip_master"},{"location":{"location":"https://github.com/DingBao-sys/ip.git","repoName":"ip","organization":"DingBao-sys","domainName":"github"},"branch":"master","displayName":"DingBao-sys/ip[master]","outputFolderName":"DingBao-sys_ip_master"},{"location":{"location":"https://github.com/ashleyclx/ip.git","repoName":"ip","organization":"ashleyclx","domainName":"github"},"branch":"master","displayName":"ashleyclx/ip[master]","outputFolderName":"ashleyclx_ip_master"},{"location":{"location":"https://github.com/TheodoreKooo/ip.git","repoName":"ip","organization":"TheodoreKooo","domainName":"github"},"branch":"master","displayName":"TheodoreKooo/ip[master]","outputFolderName":"TheodoreKooo_ip_master"},{"location":{"location":"https://github.com/casaarlai/ip.git","repoName":"ip","organization":"casaarlai","domainName":"github"},"branch":"master","displayName":"casaarlai/ip[master]","outputFolderName":"casaarlai_ip_master"},{"location":{"location":"https://github.com/sun-ruiheng/ip.git","repoName":"ip","organization":"sun-ruiheng","domainName":"github"},"branch":"master","displayName":"sun-ruiheng/ip[master]","outputFolderName":"sun-ruiheng_ip_master"},{"location":{"location":"https://github.com/Fidget-Spinner/ip.git","repoName":"ip","organization":"Fidget-Spinner","domainName":"github"},"branch":"master","displayName":"Fidget-Spinner/ip[master]","outputFolderName":"Fidget-Spinner_ip_master"},{"location":{"location":"https://github.com/Cedricaca/ip.git","repoName":"ip","organization":"Cedricaca","domainName":"github"},"branch":"master","displayName":"Cedricaca/ip[master]","outputFolderName":"Cedricaca_ip_master"},{"location":{"location":"https://github.com/YowSiaoKang/ip.git","repoName":"ip","organization":"YowSiaoKang","domainName":"github"},"branch":"master","displayName":"YowSiaoKang/ip[master]","outputFolderName":"YowSiaoKang_ip_master"},{"location":{"location":"https://github.com/J-wang-CSMA/ip.git","repoName":"ip","organization":"J-wang-CSMA","domainName":"github"},"branch":"master","displayName":"J-wang-CSMA/ip[master]","outputFolderName":"J-wang-CSMA_ip_master"},{"location":{"location":"https://github.com/Ragnapop/ip.git","repoName":"ip","organization":"Ragnapop","domainName":"github"},"branch":"master","displayName":"Ragnapop/ip[master]","outputFolderName":"Ragnapop_ip_master"},{"location":{"location":"https://github.com/UdhayaShan1/ip.git","repoName":"ip","organization":"UdhayaShan1","domainName":"github"},"branch":"master","displayName":"UdhayaShan1/ip[master]","outputFolderName":"UdhayaShan1_ip_master"},{"location":{"location":"https://github.com/tayziyi/ip.git","repoName":"ip","organization":"tayziyi","domainName":"github"},"branch":"master","displayName":"tayziyi/ip[master]","outputFolderName":"tayziyi_ip_master"},{"location":{"location":"https://github.com/blaukc/ip.git","repoName":"ip","organization":"blaukc","domainName":"github"},"branch":"master","displayName":"blaukc/ip[master]","outputFolderName":"blaukc_ip_master"},{"location":{"location":"https://github.com/kokerinks/ip.git","repoName":"ip","organization":"kokerinks","domainName":"github"},"branch":"master","displayName":"kokerinks/ip[master]","outputFolderName":"kokerinks_ip_master"},{"location":{"location":"https://github.com/mahadhir247/ip.git","repoName":"ip","organization":"mahadhir247","domainName":"github"},"branch":"master","displayName":"mahadhir247/ip[master]","outputFolderName":"mahadhir247_ip_master"},{"location":{"location":"https://github.com/delishad21/ip.git","repoName":"ip","organization":"delishad21","domainName":"github"},"branch":"master","displayName":"delishad21/ip[master]","outputFolderName":"delishad21_ip_master"},{"location":{"location":"https://github.com/gavingoh99/ip.git","repoName":"ip","organization":"gavingoh99","domainName":"github"},"branch":"master","displayName":"gavingoh99/ip[master]","outputFolderName":"gavingoh99_ip_master"},{"location":{"location":"https://github.com/kjw142857/ip.git","repoName":"ip","organization":"kjw142857","domainName":"github"},"branch":"master","displayName":"kjw142857/ip[master]","outputFolderName":"kjw142857_ip_master"},{"location":{"location":"https://github.com/dayn-1/ip.git","repoName":"ip","organization":"dayn-1","domainName":"github"},"branch":"master","displayName":"dayn-1/ip[master]","outputFolderName":"dayn-1_ip_master"},{"location":{"location":"https://github.com/macareonie/ip.git","repoName":"ip","organization":"macareonie","domainName":"github"},"branch":"master","displayName":"macareonie/ip[master]","outputFolderName":"macareonie_ip_master"},{"location":{"location":"https://github.com/Rikko1204/ip.git","repoName":"ip","organization":"Rikko1204","domainName":"github"},"branch":"master","displayName":"Rikko1204/ip[master]","outputFolderName":"Rikko1204_ip_master"},{"location":{"location":"https://github.com/teojunda/ip.git","repoName":"ip","organization":"teojunda","domainName":"github"},"branch":"master","displayName":"teojunda/ip[master]","outputFolderName":"teojunda_ip_master"},{"location":{"location":"https://github.com/thewongdylan/ip.git","repoName":"ip","organization":"thewongdylan","domainName":"github"},"branch":"master","displayName":"thewongdylan/ip[master]","outputFolderName":"thewongdylan_ip_master"},{"location":{"location":"https://github.com/bertrandong/ip.git","repoName":"ip","organization":"bertrandong","domainName":"github"},"branch":"master","displayName":"bertrandong/ip[master]","outputFolderName":"bertrandong_ip_master"},{"location":{"location":"https://github.com/rertyy/ip.git","repoName":"ip","organization":"rertyy","domainName":"github"},"branch":"master","displayName":"rertyy/ip[master]","outputFolderName":"rertyy_ip_master"},{"location":{"location":"https://github.com/soons1/ip.git","repoName":"ip","organization":"soons1","domainName":"github"},"branch":"master","displayName":"soons1/ip[master]","outputFolderName":"soons1_ip_master"},{"location":{"location":"https://github.com/solomonng2001/ip.git","repoName":"ip","organization":"solomonng2001","domainName":"github"},"branch":"master","displayName":"solomonng2001/ip[master]","outputFolderName":"solomonng2001_ip_master"},{"location":{"location":"https://github.com/guanquann/ip.git","repoName":"ip","organization":"guanquann","domainName":"github"},"branch":"master","displayName":"guanquann/ip[master]","outputFolderName":"guanquann_ip_master"},{"location":{"location":"https://github.com/YuSoonZ/ip.git","repoName":"ip","organization":"YuSoonZ","domainName":"github"},"branch":"master","displayName":"YuSoonZ/ip[master]","outputFolderName":"YuSoonZ_ip_master"},{"location":{"location":"https://github.com/JuliaPoo/ip.git","repoName":"ip","organization":"JuliaPoo","domainName":"github"},"branch":"master","displayName":"JuliaPoo/ip[master]","outputFolderName":"JuliaPoo_ip_master"},{"location":{"location":"https://github.com/dillontkh/ip.git","repoName":"ip","organization":"dillontkh","domainName":"github"},"branch":"master","displayName":"dillontkh/ip[master]","outputFolderName":"dillontkh_ip_master"},{"location":{"location":"https://github.com/camille-readbean/ip.git","repoName":"ip","organization":"camille-readbean","domainName":"github"},"branch":"master","displayName":"camille-readbean/ip[master]","outputFolderName":"camille-readbean_ip_master"},{"location":{"location":"https://github.com/ruijietay/ip.git","repoName":"ip","organization":"ruijietay","domainName":"github"},"branch":"master","displayName":"ruijietay/ip[master]","outputFolderName":"ruijietay_ip_master"},{"location":{"location":"https://github.com/HM33-Stu/ip.git","repoName":"ip","organization":"HM33-Stu","domainName":"github"},"branch":"master","displayName":"HM33-Stu/ip[master]","outputFolderName":"HM33-Stu_ip_master"},{"location":{"location":"https://github.com/nobodyishappy/ip.git","repoName":"ip","organization":"nobodyishappy","domainName":"github"},"branch":"master","displayName":"nobodyishappy/ip[master]","outputFolderName":"nobodyishappy_ip_master"},{"location":{"location":"https://github.com/yadunut/ip.git","repoName":"ip","organization":"yadunut","domainName":"github"},"branch":"master","displayName":"yadunut/ip[master]","outputFolderName":"yadunut_ip_master"},{"location":{"location":"https://github.com/breezetall/ip.git","repoName":"ip","organization":"breezetall","domainName":"github"},"branch":"master","displayName":"breezetall/ip[master]","outputFolderName":"breezetall_ip_master"},{"location":{"location":"https://github.com/jjchee77/ip.git","repoName":"ip","organization":"jjchee77","domainName":"github"},"branch":"master","displayName":"jjchee77/ip[master]","outputFolderName":"jjchee77_ip_master"},{"location":{"location":"https://github.com/BryanL2303/ip.git","repoName":"ip","organization":"BryanL2303","domainName":"github"},"branch":"master","displayName":"BryanL2303/ip[master]","outputFolderName":"BryanL2303_ip_master"},{"location":{"location":"https://github.com/RyanNgWH/ip.git","repoName":"ip","organization":"RyanNgWH","domainName":"github"},"branch":"master","displayName":"RyanNgWH/ip[master]","outputFolderName":"RyanNgWH_ip_master"},{"location":{"location":"https://github.com/Jaspertzx/ip.git","repoName":"ip","organization":"Jaspertzx","domainName":"github"},"branch":"master","displayName":"Jaspertzx/ip[master]","outputFolderName":"Jaspertzx_ip_master"},{"location":{"location":"https://github.com/smolegz/ip.git","repoName":"ip","organization":"smolegz","domainName":"github"},"branch":"master","displayName":"smolegz/ip[master]","outputFolderName":"smolegz_ip_master"},{"location":{"location":"https://github.com/azumieflare/ip.git","repoName":"ip","organization":"azumieflare","domainName":"github"},"branch":"master","displayName":"azumieflare/ip[master]","outputFolderName":"azumieflare_ip_master"},{"location":{"location":"https://github.com/javierng2knus/ip.git","repoName":"ip","organization":"javierng2knus","domainName":"github"},"branch":"master","displayName":"javierng2knus/ip[master]","outputFolderName":"javierng2knus_ip_master"},{"location":{"location":"https://github.com/SimKianSeng/ip.git","repoName":"ip","organization":"SimKianSeng","domainName":"github"},"branch":"master","displayName":"SimKianSeng/ip[master]","outputFolderName":"SimKianSeng_ip_master"},{"location":{"location":"https://github.com/jasperng-nus/ip.git","repoName":"ip","organization":"jasperng-nus","domainName":"github"},"branch":"master","displayName":"jasperng-nus/ip[master]","outputFolderName":"jasperng-nus_ip_master"},{"location":{"location":"https://github.com/HongRay/ip.git","repoName":"ip","organization":"HongRay","domainName":"github"},"branch":"master","displayName":"HongRay/ip[master]","outputFolderName":"HongRay_ip_master"},{"location":{"location":"https://github.com/kailashgautham/ip.git","repoName":"ip","organization":"kailashgautham","domainName":"github"},"branch":"master","displayName":"kailashgautham/ip[master]","outputFolderName":"kailashgautham_ip_master"},{"location":{"location":"https://github.com/zhenghuil/ip.git","repoName":"ip","organization":"zhenghuil","domainName":"github"},"branch":"master","displayName":"zhenghuil/ip[master]","outputFolderName":"zhenghuil_ip_master"},{"location":{"location":"https://github.com/donwong2308/ip.git","repoName":"ip","organization":"donwong2308","domainName":"github"},"branch":"master","displayName":"donwong2308/ip[master]","outputFolderName":"donwong2308_ip_master"},{"location":{"location":"https://github.com/jayllo-c/ip.git","repoName":"ip","organization":"jayllo-c","domainName":"github"},"branch":"master","displayName":"jayllo-c/ip[master]","outputFolderName":"jayllo-c_ip_master"},{"location":{"location":"https://github.com/cheahTJ/ip.git","repoName":"ip","organization":"cheahTJ","domainName":"github"},"branch":"master","displayName":"cheahTJ/ip[master]","outputFolderName":"cheahTJ_ip_master"},{"location":{"location":"https://github.com/triciiaaa/ip.git","repoName":"ip","organization":"triciiaaa","domainName":"github"},"branch":"master","displayName":"triciiaaa/ip[master]","outputFolderName":"triciiaaa_ip_master"},{"location":{"location":"https://github.com/larainezo/ip.git","repoName":"ip","organization":"larainezo","domainName":"github"},"branch":"master","displayName":"larainezo/ip[master]","outputFolderName":"larainezo_ip_master"},{"location":{"location":"https://github.com/kailinteoo/ip.git","repoName":"ip","organization":"kailinteoo","domainName":"github"},"branch":"master","displayName":"kailinteoo/ip[master]","outputFolderName":"kailinteoo_ip_master"},{"location":{"location":"https://github.com/brennalaurentan/ip.git","repoName":"ip","organization":"brennalaurentan","domainName":"github"},"branch":"master","displayName":"brennalaurentan/ip[master]","outputFolderName":"brennalaurentan_ip_master"},{"location":{"location":"https://github.com/GiselleTan/ip.git","repoName":"ip","organization":"GiselleTan","domainName":"github"},"branch":"master","displayName":"GiselleTan/ip[master]","outputFolderName":"GiselleTan_ip_master"},{"location":{"location":"https://github.com/taufiq/ip.git","repoName":"ip","organization":"taufiq","domainName":"github"},"branch":"master","displayName":"taufiq/ip[master]","outputFolderName":"taufiq_ip_master"},{"location":{"location":"https://github.com/xuelinglow/ip.git","repoName":"ip","organization":"xuelinglow","domainName":"github"},"branch":"master","displayName":"xuelinglow/ip[master]","outputFolderName":"xuelinglow_ip_master"},{"location":{"location":"https://github.com/shunjieee/ip.git","repoName":"ip","organization":"shunjieee","domainName":"github"},"branch":"master","displayName":"shunjieee/ip[master]","outputFolderName":"shunjieee_ip_master"},{"location":{"location":"https://github.com/SherwynNg/ip.git","repoName":"ip","organization":"SherwynNg","domainName":"github"},"branch":"master","displayName":"SherwynNg/ip[master]","outputFolderName":"SherwynNg_ip_master"},{"location":{"location":"https://github.com/AndrewOng2066/ip.git","repoName":"ip","organization":"AndrewOng2066","domainName":"github"},"branch":"master","displayName":"AndrewOng2066/ip[master]","outputFolderName":"AndrewOng2066_ip_master"},{"location":{"location":"https://github.com/MarcusGitty/ip.git","repoName":"ip","organization":"MarcusGitty","domainName":"github"},"branch":"master","displayName":"MarcusGitty/ip[master]","outputFolderName":"MarcusGitty_ip_master"},{"location":{"location":"https://github.com/Anant1902/ip.git","repoName":"ip","organization":"Anant1902","domainName":"github"},"branch":"master","displayName":"Anant1902/ip[master]","outputFolderName":"Anant1902_ip_master"},{"location":{"location":"https://github.com/headcube1/ip.git","repoName":"ip","organization":"headcube1","domainName":"github"},"branch":"master","displayName":"headcube1/ip[master]","outputFolderName":"headcube1_ip_master"},{"location":{"location":"https://github.com/jimseah-0116/ip.git","repoName":"ip","organization":"jimseah-0116","domainName":"github"},"branch":"master","displayName":"jimseah-0116/ip[master]","outputFolderName":"jimseah-0116_ip_master"},{"location":{"location":"https://github.com/chuahjiajie/ip.git","repoName":"ip","organization":"chuahjiajie","domainName":"github"},"branch":"master","displayName":"chuahjiajie/ip[master]","outputFolderName":"chuahjiajie_ip_master"},{"location":{"location":"https://github.com/ararchch/ip.git","repoName":"ip","organization":"ararchch","domainName":"github"},"branch":"master","displayName":"ararchch/ip[master]","outputFolderName":"ararchch_ip_master"},{"location":{"location":"https://github.com/chiaryan/ip.git","repoName":"ip","organization":"chiaryan","domainName":"github"},"branch":"master","displayName":"chiaryan/ip[master]","outputFolderName":"chiaryan_ip_master"},{"location":{"location":"https://github.com/chengjunyuan/ip.git","repoName":"ip","organization":"chengjunyuan","domainName":"github"},"branch":"master","displayName":"chengjunyuan/ip[master]","outputFolderName":"chengjunyuan_ip_master"},{"location":{"location":"https://github.com/LimZiJia/ip.git","repoName":"ip","organization":"LimZiJia","domainName":"github"},"branch":"master","displayName":"LimZiJia/ip[master]","outputFolderName":"LimZiJia_ip_master"},{"location":{"location":"https://github.com/darkvoid32/ip.git","repoName":"ip","organization":"darkvoid32","domainName":"github"},"branch":"master","displayName":"darkvoid32/ip[master]","outputFolderName":"darkvoid32_ip_master"},{"location":{"location":"https://github.com/maze508/ip.git","repoName":"ip","organization":"maze508","domainName":"github"},"branch":"master","displayName":"maze508/ip[master]","outputFolderName":"maze508_ip_master"},{"location":{"location":"https://github.com/RingoftheKing/ip.git","repoName":"ip","organization":"RingoftheKing","domainName":"github"},"branch":"master","displayName":"RingoftheKing/ip[master]","outputFolderName":"RingoftheKing_ip_master"},{"location":{"location":"https://github.com/Rishit02/ip.git","repoName":"ip","organization":"Rishit02","domainName":"github"},"branch":"master","displayName":"Rishit02/ip[master]","outputFolderName":"Rishit02_ip_master"},{"location":{"location":"https://github.com/drustanyjt/ip.git","repoName":"ip","organization":"drustanyjt","domainName":"github"},"branch":"master","displayName":"drustanyjt/ip[master]","outputFolderName":"drustanyjt_ip_master"},{"location":{"location":"https://github.com/Dexter-Wong/ip.git","repoName":"ip","organization":"Dexter-Wong","domainName":"github"},"branch":"master","displayName":"Dexter-Wong/ip[master]","outputFolderName":"Dexter-Wong_ip_master"},{"location":{"location":"https://github.com/jxunze/ip.git","repoName":"ip","organization":"jxunze","domainName":"github"},"branch":"master","displayName":"jxunze/ip[master]","outputFolderName":"jxunze_ip_master"},{"location":{"location":"https://github.com/Vision-2000/ip.git","repoName":"ip","organization":"Vision-2000","domainName":"github"},"branch":"master","displayName":"Vision-2000/ip[master]","outputFolderName":"Vision-2000_ip_master"},{"location":{"location":"https://github.com/Derekljh/ip.git","repoName":"ip","organization":"Derekljh","domainName":"github"},"branch":"master","displayName":"Derekljh/ip[master]","outputFolderName":"Derekljh_ip_master"},{"location":{"location":"https://github.com/alphajae11/ip.git","repoName":"ip","organization":"alphajae11","domainName":"github"},"branch":"master","displayName":"alphajae11/ip[master]","outputFolderName":"alphajae11_ip_master"},{"location":{"location":"https://github.com/Kappaccinoh/ip.git","repoName":"ip","organization":"Kappaccinoh","domainName":"github"},"branch":"master","displayName":"Kappaccinoh/ip[master]","outputFolderName":"Kappaccinoh_ip_master"},{"location":{"location":"https://github.com/minreiseah/ip.git","repoName":"ip","organization":"minreiseah","domainName":"github"},"branch":"master","displayName":"minreiseah/ip[master]","outputFolderName":"minreiseah_ip_master"},{"location":{"location":"https://github.com/yuhinarita/ip.git","repoName":"ip","organization":"yuhinarita","domainName":"github"},"branch":"master","displayName":"yuhinarita/ip[master]","outputFolderName":"yuhinarita_ip_master"},{"location":{"location":"https://github.com/quelinxiao/ip.git","repoName":"ip","organization":"quelinxiao","domainName":"github"},"branch":"master","displayName":"quelinxiao/ip[master]","outputFolderName":"quelinxiao_ip_master"},{"location":{"location":"https://github.com/kab-dot/ip.git","repoName":"ip","organization":"kab-dot","domainName":"github"},"branch":"master","displayName":"kab-dot/ip[master]","outputFolderName":"kab-dot_ip_master"},{"location":{"location":"https://github.com/alfaloo/ip.git","repoName":"ip","organization":"alfaloo","domainName":"github"},"branch":"master","displayName":"alfaloo/ip[master]","outputFolderName":"alfaloo_ip_master"},{"location":{"location":"https://github.com/doyelee0313/ip.git","repoName":"ip","organization":"doyelee0313","domainName":"github"},"branch":"master","displayName":"doyelee0313/ip[master]","outputFolderName":"doyelee0313_ip_master"},{"location":{"location":"https://github.com/sdevih/ip.git","repoName":"ip","organization":"sdevih","domainName":"github"},"branch":"master","displayName":"sdevih/ip[master]","outputFolderName":"sdevih_ip_master"},{"location":{"location":"https://github.com/Emberlynn-Loo/ip.git","repoName":"ip","organization":"Emberlynn-Loo","domainName":"github"},"branch":"master","displayName":"Emberlynn-Loo/ip[master]","outputFolderName":"Emberlynn-Loo_ip_master"},{"location":{"location":"https://github.com/tejas-1405/ip.git","repoName":"ip","organization":"tejas-1405","domainName":"github"},"branch":"master","displayName":"tejas-1405/ip[master]","outputFolderName":"tejas-1405_ip_master"},{"location":{"location":"https://github.com/H4mes/ip.git","repoName":"ip","organization":"H4mes","domainName":"github"},"branch":"master","displayName":"H4mes/ip[master]","outputFolderName":"H4mes_ip_master"},{"location":{"location":"https://github.com/ChocoRagdoll/ip.git","repoName":"ip","organization":"ChocoRagdoll","domainName":"github"},"branch":"master","displayName":"ChocoRagdoll/ip[master]","outputFolderName":"ChocoRagdoll_ip_master"},{"location":{"location":"https://github.com/dwangwk/ip.git","repoName":"ip","organization":"dwangwk","domainName":"github"},"branch":"master","displayName":"dwangwk/ip[master]","outputFolderName":"dwangwk_ip_master"},{"location":{"location":"https://github.com/leeweiming3/ip.git","repoName":"ip","organization":"leeweiming3","domainName":"github"},"branch":"master","displayName":"leeweiming3/ip[master]","outputFolderName":"leeweiming3_ip_master"},{"location":{"location":"https://github.com/Wyrkx/ip.git","repoName":"ip","organization":"Wyrkx","domainName":"github"},"branch":"master","displayName":"Wyrkx/ip[master]","outputFolderName":"Wyrkx_ip_master"},{"location":{"location":"https://github.com/jeong-jaeho/ip.git","repoName":"ip","organization":"jeong-jaeho","domainName":"github"},"branch":"master","displayName":"jeong-jaeho/ip[master]","outputFolderName":"jeong-jaeho_ip_master"},{"location":{"location":"https://github.com/tohlh/ip.git","repoName":"ip","organization":"tohlh","domainName":"github"},"branch":"master","displayName":"tohlh/ip[master]","outputFolderName":"tohlh_ip_master"},{"location":{"location":"https://github.com/tzaph/ip.git","repoName":"ip","organization":"tzaph","domainName":"github"},"branch":"master","displayName":"tzaph/ip[master]","outputFolderName":"tzaph_ip_master"},{"location":{"location":"https://github.com/PateShin/ip.git","repoName":"ip","organization":"PateShin","domainName":"github"},"branch":"master","displayName":"PateShin/ip[master]","outputFolderName":"PateShin_ip_master"},{"location":{"location":"https://github.com/PallonCX/ip.git","repoName":"ip","organization":"PallonCX","domainName":"github"},"branch":"master","displayName":"PallonCX/ip[master]","outputFolderName":"PallonCX_ip_master"},{"location":{"location":"https://github.com/benson1029/ip.git","repoName":"ip","organization":"benson1029","domainName":"github"},"branch":"master","displayName":"benson1029/ip[master]","outputFolderName":"benson1029_ip_master"},{"location":{"location":"https://github.com/Kaya3842/ip.git","repoName":"ip","organization":"Kaya3842","domainName":"github"},"branch":"master","displayName":"Kaya3842/ip[master]","outputFolderName":"Kaya3842_ip_master"},{"location":{"location":"https://github.com/JustWeiHao/ip.git","repoName":"ip","organization":"JustWeiHao","domainName":"github"},"branch":"master","displayName":"JustWeiHao/ip[master]","outputFolderName":"JustWeiHao_ip_master"},{"location":{"location":"https://github.com/chin-herng/ip.git","repoName":"ip","organization":"chin-herng","domainName":"github"},"branch":"master","displayName":"chin-herng/ip[master]","outputFolderName":"chin-herng_ip_master"},{"location":{"location":"https://github.com/swtan346/ip.git","repoName":"ip","organization":"swtan346","domainName":"github"},"branch":"master","displayName":"swtan346/ip[master]","outputFolderName":"swtan346_ip_master"},{"location":{"location":"https://github.com/gosongying/ip.git","repoName":"ip","organization":"gosongying","domainName":"github"},"branch":"master","displayName":"gosongying/ip[master]","outputFolderName":"gosongying_ip_master"},{"location":{"location":"https://github.com/IamZhenHong/ip.git","repoName":"ip","organization":"IamZhenHong","domainName":"github"},"branch":"master","displayName":"IamZhenHong/ip[master]","outputFolderName":"IamZhenHong_ip_master"},{"location":{"location":"https://github.com/ivan24004/ip.git","repoName":"ip","organization":"ivan24004","domainName":"github"},"branch":"master","displayName":"ivan24004/ip[master]","outputFolderName":"ivan24004_ip_master"},{"location":{"location":"https://github.com/sarjinius/ip.git","repoName":"ip","organization":"sarjinius","domainName":"github"},"branch":"master","displayName":"sarjinius/ip[master]","outputFolderName":"sarjinius_ip_master"},{"location":{"location":"https://github.com/shavonneg/ip.git","repoName":"ip","organization":"shavonneg","domainName":"github"},"branch":"master","displayName":"shavonneg/ip[master]","outputFolderName":"shavonneg_ip_master"},{"location":{"location":"https://github.com/STELLA-LYE/ip.git","repoName":"ip","organization":"STELLA-LYE","domainName":"github"},"branch":"master","displayName":"STELLA-LYE/ip[master]","outputFolderName":"STELLA-LYE_ip_master"},{"location":{"location":"https://github.com/Lalelulilulela/ip.git","repoName":"ip","organization":"Lalelulilulela","domainName":"github"},"branch":"master","displayName":"Lalelulilulela/ip[master]","outputFolderName":"Lalelulilulela_ip_master"},{"location":{"location":"https://github.com/eunrcn/ip.git","repoName":"ip","organization":"eunrcn","domainName":"github"},"branch":"master","displayName":"eunrcn/ip[master]","outputFolderName":"eunrcn_ip_master"},{"location":{"location":"https://github.com/jocelyn-soh/ip.git","repoName":"ip","organization":"jocelyn-soh","domainName":"github"},"branch":"master","displayName":"jocelyn-soh/ip[master]","outputFolderName":"jocelyn-soh_ip_master"},{"location":{"location":"https://github.com/lynnetteeee/ip.git","repoName":"ip","organization":"lynnetteeee","domainName":"github"},"branch":"master","displayName":"lynnetteeee/ip[master]","outputFolderName":"lynnetteeee_ip_master"},{"location":{"location":"https://github.com/chenyixin0/ip.git","repoName":"ip","organization":"chenyixin0","domainName":"github"},"branch":"master","displayName":"chenyixin0/ip[master]","outputFolderName":"chenyixin0_ip_master"},{"location":{"location":"https://github.com/tanjieling0/ip.git","repoName":"ip","organization":"tanjieling0","domainName":"github"},"branch":"master","displayName":"tanjieling0/ip[master]","outputFolderName":"tanjieling0_ip_master"},{"location":{"location":"https://github.com/alex-setyawan/ip.git","repoName":"ip","organization":"alex-setyawan","domainName":"github"},"branch":"master","displayName":"alex-setyawan/ip[master]","outputFolderName":"alex-setyawan_ip_master"},{"location":{"location":"https://github.com/peienlim/ip.git","repoName":"ip","organization":"peienlim","domainName":"github"},"branch":"master","displayName":"peienlim/ip[master]","outputFolderName":"peienlim_ip_master"},{"location":{"location":"https://github.com/danielleloh/ip.git","repoName":"ip","organization":"danielleloh","domainName":"github"},"branch":"master","displayName":"danielleloh/ip[master]","outputFolderName":"danielleloh_ip_master"},{"location":{"location":"https://github.com/jannaleong/ip.git","repoName":"ip","organization":"jannaleong","domainName":"github"},"branch":"master","displayName":"jannaleong/ip[master]","outputFolderName":"jannaleong_ip_master"},{"location":{"location":"https://github.com/huekoh/ip.git","repoName":"ip","organization":"huekoh","domainName":"github"},"branch":"master","displayName":"huekoh/ip[master]","outputFolderName":"huekoh_ip_master"},{"location":{"location":"https://github.com/wapisai/ip.git","repoName":"ip","organization":"wapisai","domainName":"github"},"branch":"master","displayName":"wapisai/ip[master]","outputFolderName":"wapisai_ip_master"},{"location":{"location":"https://github.com/NatLeong/ip.git","repoName":"ip","organization":"NatLeong","domainName":"github"},"branch":"master","displayName":"NatLeong/ip[master]","outputFolderName":"NatLeong_ip_master"},{"location":{"location":"https://github.com/Pughal77/ip.git","repoName":"ip","organization":"Pughal77","domainName":"github"},"branch":"master","displayName":"Pughal77/ip[master]","outputFolderName":"Pughal77_ip_master"},{"location":{"location":"https://github.com/tahnya/ip.git","repoName":"ip","organization":"tahnya","domainName":"github"},"branch":"master","displayName":"tahnya/ip[master]","outputFolderName":"tahnya_ip_master"},{"location":{"location":"https://github.com/rahhulleee/ip.git","repoName":"ip","organization":"rahhulleee","domainName":"github"},"branch":"master","displayName":"rahhulleee/ip[master]","outputFolderName":"rahhulleee_ip_master"},{"location":{"location":"https://github.com/tamagochuuu/ip.git","repoName":"ip","organization":"tamagochuuu","domainName":"github"},"branch":"master","displayName":"tamagochuuu/ip[master]","outputFolderName":"tamagochuuu_ip_master"},{"location":{"location":"https://github.com/Chiarena/ip.git","repoName":"ip","organization":"Chiarena","domainName":"github"},"branch":"master","displayName":"Chiarena/ip[master]","outputFolderName":"Chiarena_ip_master"},{"location":{"location":"https://github.com/agreatdayy/ip.git","repoName":"ip","organization":"agreatdayy","domainName":"github"},"branch":"master","displayName":"agreatdayy/ip[master]","outputFolderName":"agreatdayy_ip_master"},{"location":{"location":"https://github.com/CaptainKeqing/ip.git","repoName":"ip","organization":"CaptainKeqing","domainName":"github"},"branch":"master","displayName":"CaptainKeqing/ip[master]","outputFolderName":"CaptainKeqing_ip_master"},{"location":{"location":"https://github.com/evedaktyl/ip.git","repoName":"ip","organization":"evedaktyl","domainName":"github"},"branch":"master","displayName":"evedaktyl/ip[master]","outputFolderName":"evedaktyl_ip_master"},{"location":{"location":"https://github.com/zhikaiong2001/ip.git","repoName":"ip","organization":"zhikaiong2001","domainName":"github"},"branch":"master","displayName":"zhikaiong2001/ip[master]","outputFolderName":"zhikaiong2001_ip_master"},{"location":{"location":"https://github.com/johnyoozhengxian/ip.git","repoName":"ip","organization":"johnyoozhengxian","domainName":"github"},"branch":"master","displayName":"johnyoozhengxian/ip[master]","outputFolderName":"johnyoozhengxian_ip_master"},{"location":{"location":"https://github.com/KinTatHo/ip.git","repoName":"ip","organization":"KinTatHo","domainName":"github"},"branch":"master","displayName":"KinTatHo/ip[master]","outputFolderName":"KinTatHo_ip_master"},{"location":{"location":"https://github.com/Joseph31416/ip.git","repoName":"ip","organization":"Joseph31416","domainName":"github"},"branch":"master","displayName":"Joseph31416/ip[master]","outputFolderName":"Joseph31416_ip_master"},{"location":{"location":"https://github.com/Murugan-Maniish/ip.git","repoName":"ip","organization":"Murugan-Maniish","domainName":"github"},"branch":"master","displayName":"Murugan-Maniish/ip[master]","outputFolderName":"Murugan-Maniish_ip_master"},{"location":{"location":"https://github.com/Joshy837/ip.git","repoName":"ip","organization":"Joshy837","domainName":"github"},"branch":"master","displayName":"Joshy837/ip[master]","outputFolderName":"Joshy837_ip_master"},{"location":{"location":"https://github.com/ChenXy128/ip.git","repoName":"ip","organization":"ChenXy128","domainName":"github"},"branch":"master","displayName":"ChenXy128/ip[master]","outputFolderName":"ChenXy128_ip_master"},{"location":{"location":"https://github.com/jamessinmaojun/ip.git","repoName":"ip","organization":"jamessinmaojun","domainName":"github"},"branch":"master","displayName":"jamessinmaojun/ip[master]","outputFolderName":"jamessinmaojun_ip_master"},{"location":{"location":"https://github.com/Joelwang22/ip.git","repoName":"ip","organization":"Joelwang22","domainName":"github"},"branch":"master","displayName":"Joelwang22/ip[master]","outputFolderName":"Joelwang22_ip_master"},{"location":{"location":"https://github.com/shawnnlimm/ip.git","repoName":"ip","organization":"shawnnlimm","domainName":"github"},"branch":"master","displayName":"shawnnlimm/ip[master]","outputFolderName":"shawnnlimm_ip_master"},{"location":{"location":"https://github.com/erv-teo/ip.git","repoName":"ip","organization":"erv-teo","domainName":"github"},"branch":"master","displayName":"erv-teo/ip[master]","outputFolderName":"erv-teo_ip_master"},{"location":{"location":"https://github.com/h4ow3i/ip.git","repoName":"ip","organization":"h4ow3i","domainName":"github"},"branch":"master","displayName":"h4ow3i/ip[master]","outputFolderName":"h4ow3i_ip_master"},{"location":{"location":"https://github.com/ziyang27/ip.git","repoName":"ip","organization":"ziyang27","domainName":"github"},"branch":"master","displayName":"ziyang27/ip[master]","outputFolderName":"ziyang27_ip_master"},{"location":{"location":"https://github.com/FangRuoqing/ip.git","repoName":"ip","organization":"FangRuoqing","domainName":"github"},"branch":"master","displayName":"FangRuoqing/ip[master]","outputFolderName":"FangRuoqing_ip_master"},{"location":{"location":"https://github.com/0nesheep/ip.git","repoName":"ip","organization":"0nesheep","domainName":"github"},"branch":"master","displayName":"0nesheep/ip[master]","outputFolderName":"0nesheep_ip_master"},{"location":{"location":"https://github.com/0-yibai/ip.git","repoName":"ip","organization":"0-yibai","domainName":"github"},"branch":"master","displayName":"0-yibai/ip[master]","outputFolderName":"0-yibai_ip_master"},{"location":{"location":"https://github.com/jerremyng/ip.git","repoName":"ip","organization":"jerremyng","domainName":"github"},"branch":"master","displayName":"jerremyng/ip[master]","outputFolderName":"jerremyng_ip_master"},{"location":{"location":"https://github.com/irwynliong/ip.git","repoName":"ip","organization":"irwynliong","domainName":"github"},"branch":"master","displayName":"irwynliong/ip[master]","outputFolderName":"irwynliong_ip_master"},{"location":{"location":"https://github.com/yorklim/ip.git","repoName":"ip","organization":"yorklim","domainName":"github"},"branch":"master","displayName":"yorklim/ip[master]","outputFolderName":"yorklim_ip_master"},{"location":{"location":"https://github.com/vannykin/ip.git","repoName":"ip","organization":"vannykin","domainName":"github"},"branch":"master","displayName":"vannykin/ip[master]","outputFolderName":"vannykin_ip_master"},{"location":{"location":"https://github.com/laney0808/ip.git","repoName":"ip","organization":"laney0808","domainName":"github"},"branch":"master","displayName":"laney0808/ip[master]","outputFolderName":"laney0808_ip_master"},{"location":{"location":"https://github.com/yapxuanxuan/ip.git","repoName":"ip","organization":"yapxuanxuan","domainName":"github"},"branch":"master","displayName":"yapxuanxuan/ip[master]","outputFolderName":"yapxuanxuan_ip_master"},{"location":{"location":"https://github.com/Greg-Tan/ip.git","repoName":"ip","organization":"Greg-Tan","domainName":"github"},"branch":"master","displayName":"Greg-Tan/ip[master]","outputFolderName":"Greg-Tan_ip_master"},{"location":{"location":"https://github.com/taniatsq/ip.git","repoName":"ip","organization":"taniatsq","domainName":"github"},"branch":"master","displayName":"taniatsq/ip[master]","outputFolderName":"taniatsq_ip_master"},{"location":{"location":"https://github.com/yongkotaro/ip.git","repoName":"ip","organization":"yongkotaro","domainName":"github"},"branch":"master","displayName":"yongkotaro/ip[master]","outputFolderName":"yongkotaro_ip_master"},{"location":{"location":"https://github.com/tanyunchao/ip.git","repoName":"ip","organization":"tanyunchao","domainName":"github"},"branch":"master","displayName":"tanyunchao/ip[master]","outputFolderName":"tanyunchao_ip_master"},{"location":{"location":"https://github.com/KiatLun/ip.git","repoName":"ip","organization":"KiatLun","domainName":"github"},"branch":"master","displayName":"KiatLun/ip[master]","outputFolderName":"KiatLun_ip_master"},{"location":{"location":"https://github.com/Xuyan0518/ip.git","repoName":"ip","organization":"Xuyan0518","domainName":"github"},"branch":"master","displayName":"Xuyan0518/ip[master]","outputFolderName":"Xuyan0518_ip_master"},{"location":{"location":"https://github.com/cleowenxuan/ip.git","repoName":"ip","organization":"cleowenxuan","domainName":"github"},"branch":"master","displayName":"cleowenxuan/ip[master]","outputFolderName":"cleowenxuan_ip_master"},{"location":{"location":"https://github.com/logical-1985516/ip.git","repoName":"ip","organization":"logical-1985516","domainName":"github"},"branch":"master","displayName":"logical-1985516/ip[master]","outputFolderName":"logical-1985516_ip_master"},{"location":{"location":"https://github.com/jessicawyz/ip.git","repoName":"ip","organization":"jessicawyz","domainName":"github"},"branch":"master","displayName":"jessicawyz/ip[master]","outputFolderName":"jessicawyz_ip_master"},{"location":{"location":"https://github.com/ashleyy2444/ip.git","repoName":"ip","organization":"ashleyy2444","domainName":"github"},"branch":"master","displayName":"ashleyy2444/ip[master]","outputFolderName":"ashleyy2444_ip_master"},{"location":{"location":"https://github.com/tengcharmaine/ip.git","repoName":"ip","organization":"tengcharmaine","domainName":"github"},"branch":"master","displayName":"tengcharmaine/ip[master]","outputFolderName":"tengcharmaine_ip_master"},{"location":{"location":"https://github.com/Jawad280/ip.git","repoName":"ip","organization":"Jawad280","domainName":"github"},"branch":"master","displayName":"Jawad280/ip[master]","outputFolderName":"Jawad280_ip_master"},{"location":{"location":"https://github.com/ThatGirlJam/ip.git","repoName":"ip","organization":"ThatGirlJam","domainName":"github"},"branch":"master","displayName":"ThatGirlJam/ip[master]","outputFolderName":"ThatGirlJam_ip_master"},{"location":{"location":"https://github.com/saiutkarsh33/ip.git","repoName":"ip","organization":"saiutkarsh33","domainName":"github"},"branch":"master","displayName":"saiutkarsh33/ip[master]","outputFolderName":"saiutkarsh33_ip_master"},{"location":{"location":"https://github.com/meenulekha/ip.git","repoName":"ip","organization":"meenulekha","domainName":"github"},"branch":"master","displayName":"meenulekha/ip[master]","outputFolderName":"meenulekha_ip_master"},{"location":{"location":"https://github.com/LargeCrowd/ip.git","repoName":"ip","organization":"LargeCrowd","domainName":"github"},"branch":"master","displayName":"LargeCrowd/ip[master]","outputFolderName":"LargeCrowd_ip_master"},{"location":{"location":"https://github.com/linnn-7/ip.git","repoName":"ip","organization":"linnn-7","domainName":"github"},"branch":"master","displayName":"linnn-7/ip[master]","outputFolderName":"linnn-7_ip_master"},{"location":{"location":"https://github.com/maiyasaliha/ip.git","repoName":"ip","organization":"maiyasaliha","domainName":"github"},"branch":"master","displayName":"maiyasaliha/ip[master]","outputFolderName":"maiyasaliha_ip_master"},{"location":{"location":"https://github.com/jonpwk/ip.git","repoName":"ip","organization":"jonpwk","domainName":"github"},"branch":"master","displayName":"jonpwk/ip[master]","outputFolderName":"jonpwk_ip_master"},{"location":{"location":"https://github.com/ChillinRage/ip.git","repoName":"ip","organization":"ChillinRage","domainName":"github"},"branch":"master","displayName":"ChillinRage/ip[master]","outputFolderName":"ChillinRage_ip_master"},{"location":{"location":"https://github.com/moguries/ip.git","repoName":"ip","organization":"moguries","domainName":"github"},"branch":"master","displayName":"moguries/ip[master]","outputFolderName":"moguries_ip_master"},{"location":{"location":"https://github.com/Alteqa/ip.git","repoName":"ip","organization":"Alteqa","domainName":"github"},"branch":"master","displayName":"Alteqa/ip[master]","outputFolderName":"Alteqa_ip_master"},{"location":{"location":"https://github.com/Zack-Tay/ip.git","repoName":"ip","organization":"Zack-Tay","domainName":"github"},"branch":"master","displayName":"Zack-Tay/ip[master]","outputFolderName":"Zack-Tay_ip_master"},{"location":{"location":"https://github.com/marcus-ny/ip.git","repoName":"ip","organization":"marcus-ny","domainName":"github"},"branch":"master","displayName":"marcus-ny/ip[master]","outputFolderName":"marcus-ny_ip_master"},{"location":{"location":"https://github.com/bennyLCK/ip.git","repoName":"ip","organization":"bennyLCK","domainName":"github"},"branch":"master","displayName":"bennyLCK/ip[master]","outputFolderName":"bennyLCK_ip_master"},{"location":{"location":"https://github.com/kinjalagarwal1810/ip.git","repoName":"ip","organization":"kinjalagarwal1810","domainName":"github"},"branch":"master","displayName":"kinjalagarwal1810/ip[master]","outputFolderName":"kinjalagarwal1810_ip_master"},{"location":{"location":"https://github.com/R-Laksh/ip.git","repoName":"ip","organization":"R-Laksh","domainName":"github"},"branch":"master","displayName":"R-Laksh/ip[master]","outputFolderName":"R-Laksh_ip_master"},{"location":{"location":"https://github.com/Colex2000/ip.git","repoName":"ip","organization":"Colex2000","domainName":"github"},"branch":"master","displayName":"Colex2000/ip[master]","outputFolderName":"Colex2000_ip_master"},{"location":{"location":"https://github.com/DhiraPT/ip.git","repoName":"ip","organization":"DhiraPT","domainName":"github"},"branch":"master","displayName":"DhiraPT/ip[master]","outputFolderName":"DhiraPT_ip_master"},{"location":{"location":"https://github.com/yyccbb/ip.git","repoName":"ip","organization":"yyccbb","domainName":"github"},"branch":"master","displayName":"yyccbb/ip[master]","outputFolderName":"yyccbb_ip_master"},{"location":{"location":"https://github.com/nigel27022001/ip.git","repoName":"ip","organization":"nigel27022001","domainName":"github"},"branch":"master","displayName":"nigel27022001/ip[master]","outputFolderName":"nigel27022001_ip_master"},{"location":{"location":"https://github.com/shamesjen/ip.git","repoName":"ip","organization":"shamesjen","domainName":"github"},"branch":"master","displayName":"shamesjen/ip[master]","outputFolderName":"shamesjen_ip_master"},{"location":{"location":"https://github.com/sindhurajain/ip.git","repoName":"ip","organization":"sindhurajain","domainName":"github"},"branch":"master","displayName":"sindhurajain/ip[master]","outputFolderName":"sindhurajain_ip_master"},{"location":{"location":"https://github.com/ryanlimdx/ip.git","repoName":"ip","organization":"ryanlimdx","domainName":"github"},"branch":"master","displayName":"ryanlimdx/ip[master]","outputFolderName":"ryanlimdx_ip_master"},{"location":{"location":"https://github.com/hiivan/ip.git","repoName":"ip","organization":"hiivan","domainName":"github"},"branch":"master","displayName":"hiivan/ip[master]","outputFolderName":"hiivan_ip_master"},{"location":{"location":"https://github.com/Apzure/ip.git","repoName":"ip","organization":"Apzure","domainName":"github"},"branch":"master","displayName":"Apzure/ip[master]","outputFolderName":"Apzure_ip_master"},{"location":{"location":"https://github.com/bgopi23/ip.git","repoName":"ip","organization":"bgopi23","domainName":"github"},"branch":"master","displayName":"bgopi23/ip[master]","outputFolderName":"bgopi23_ip_master"},{"location":{"location":"https://github.com/LWS49/ip.git","repoName":"ip","organization":"LWS49","domainName":"github"},"branch":"master","displayName":"LWS49/ip[master]","outputFolderName":"LWS49_ip_master"},{"location":{"location":"https://github.com/wang-xinrong/ip.git","repoName":"ip","organization":"wang-xinrong","domainName":"github"},"branch":"master","displayName":"wang-xinrong/ip[master]","outputFolderName":"wang-xinrong_ip_master"},{"location":{"location":"https://github.com/HusseinSafwan02/ip.git","repoName":"ip","organization":"HusseinSafwan02","domainName":"github"},"branch":"master","displayName":"HusseinSafwan02/ip[master]","outputFolderName":"HusseinSafwan02_ip_master"},{"location":{"location":"https://github.com/Ko-Khan/ip.git","repoName":"ip","organization":"Ko-Khan","domainName":"github"},"branch":"master","displayName":"Ko-Khan/ip[master]","outputFolderName":"Ko-Khan_ip_master"},{"location":{"location":"https://github.com/yleeyilin/ip.git","repoName":"ip","organization":"yleeyilin","domainName":"github"},"branch":"master","displayName":"yleeyilin/ip[master]","outputFolderName":"yleeyilin_ip_master"},{"location":{"location":"https://github.com/jiahui0309/ip.git","repoName":"ip","organization":"jiahui0309","domainName":"github"},"branch":"master","displayName":"jiahui0309/ip[master]","outputFolderName":"jiahui0309_ip_master"},{"location":{"location":"https://github.com/Jayne1010/ip.git","repoName":"ip","organization":"Jayne1010","domainName":"github"},"branch":"master","displayName":"Jayne1010/ip[master]","outputFolderName":"Jayne1010_ip_master"},{"location":{"location":"https://github.com/getsquared/ip.git","repoName":"ip","organization":"getsquared","domainName":"github"},"branch":"master","displayName":"getsquared/ip[master]","outputFolderName":"getsquared_ip_master"},{"location":{"location":"https://github.com/kaitinghh/ip.git","repoName":"ip","organization":"kaitinghh","domainName":"github"},"branch":"master","displayName":"kaitinghh/ip[master]","outputFolderName":"kaitinghh_ip_master"},{"location":{"location":"https://github.com/4llysa/ip.git","repoName":"ip","organization":"4llysa","domainName":"github"},"branch":"master","displayName":"4llysa/ip[master]","outputFolderName":"4llysa_ip_master"},{"location":{"location":"https://github.com/Lin-Shuang-Shuang/ip.git","repoName":"ip","organization":"Lin-Shuang-Shuang","domainName":"github"},"branch":"master","displayName":"Lin-Shuang-Shuang/ip[master]","outputFolderName":"Lin-Shuang-Shuang_ip_master"},{"location":{"location":"https://github.com/youdonnnn/ip.git","repoName":"ip","organization":"youdonnnn","domainName":"github"},"branch":"master","displayName":"youdonnnn/ip[master]","outputFolderName":"youdonnnn_ip_master"},{"location":{"location":"https://github.com/xuwen-ho/ip.git","repoName":"ip","organization":"xuwen-ho","domainName":"github"},"branch":"master","displayName":"xuwen-ho/ip[master]","outputFolderName":"xuwen-ho_ip_master"},{"location":{"location":"https://github.com/ongzhili/ip.git","repoName":"ip","organization":"ongzhili","domainName":"github"},"branch":"master","displayName":"ongzhili/ip[master]","outputFolderName":"ongzhili_ip_master"},{"location":{"location":"https://github.com/miffi/ip.git","repoName":"ip","organization":"miffi","domainName":"github"},"branch":"master","displayName":"miffi/ip[master]","outputFolderName":"miffi_ip_master"},{"location":{"location":"https://github.com/wallacexuhanxiao/ip.git","repoName":"ip","organization":"wallacexuhanxiao","domainName":"github"},"branch":"master","displayName":"wallacexuhanxiao/ip[master]","outputFolderName":"wallacexuhanxiao_ip_master"},{"location":{"location":"https://github.com/Teee728/ip.git","repoName":"ip","organization":"Teee728","domainName":"github"},"branch":"master","displayName":"Teee728/ip[master]","outputFolderName":"Teee728_ip_master"},{"location":{"location":"https://github.com/wolffe88/ip.git","repoName":"ip","organization":"wolffe88","domainName":"github"},"branch":"master","displayName":"wolffe88/ip[master]","outputFolderName":"wolffe88_ip_master"},{"location":{"location":"https://github.com/jskimdev/ip.git","repoName":"ip","organization":"jskimdev","domainName":"github"},"branch":"master","displayName":"jskimdev/ip[master]","outputFolderName":"jskimdev_ip_master"},{"location":{"location":"https://github.com/reetmitra/ip.git","repoName":"ip","organization":"reetmitra","domainName":"github"},"branch":"master","displayName":"reetmitra/ip[master]","outputFolderName":"reetmitra_ip_master"},{"location":{"location":"https://github.com/iamtr/ip.git","repoName":"ip","organization":"iamtr","domainName":"github"},"branch":"master","displayName":"iamtr/ip[master]","outputFolderName":"iamtr_ip_master"},{"location":{"location":"https://github.com/officialchengyud/ip.git","repoName":"ip","organization":"officialchengyud","domainName":"github"},"branch":"master","displayName":"officialchengyud/ip[master]","outputFolderName":"officialchengyud_ip_master"},{"location":{"location":"https://github.com/GERARDJM018/ip.git","repoName":"ip","organization":"GERARDJM018","domainName":"github"},"branch":"master","displayName":"GERARDJM018/ip[master]","outputFolderName":"GERARDJM018_ip_master"},{"location":{"location":"https://github.com/howen02/ip.git","repoName":"ip","organization":"howen02","domainName":"github"},"branch":"master","displayName":"howen02/ip[master]","outputFolderName":"howen02_ip_master"},{"location":{"location":"https://github.com/NusMinato/ip.git","repoName":"ip","organization":"NusMinato","domainName":"github"},"branch":"master","displayName":"NusMinato/ip[master]","outputFolderName":"NusMinato_ip_master"},{"location":{"location":"https://github.com/hjuntan/ip.git","repoName":"ip","organization":"hjuntan","domainName":"github"},"branch":"master","displayName":"hjuntan/ip[master]","outputFolderName":"hjuntan_ip_master"},{"location":{"location":"https://github.com/gauravuj/ip.git","repoName":"ip","organization":"gauravuj","domainName":"github"},"branch":"master","displayName":"gauravuj/ip[master]","outputFolderName":"gauravuj_ip_master"},{"location":{"location":"https://github.com/yespiggy/ip.git","repoName":"ip","organization":"yespiggy","domainName":"github"},"branch":"master","displayName":"yespiggy/ip[master]","outputFolderName":"yespiggy_ip_master"},{"location":{"location":"https://github.com/Windofbitter/ip.git","repoName":"ip","organization":"Windofbitter","domainName":"github"},"branch":"master","displayName":"Windofbitter/ip[master]","outputFolderName":"Windofbitter_ip_master"},{"location":{"location":"https://github.com/NewtonKoh/ip.git","repoName":"ip","organization":"NewtonKoh","domainName":"github"},"branch":"master","displayName":"NewtonKoh/ip[master]","outputFolderName":"NewtonKoh_ip_master"},{"location":{"location":"https://github.com/narwhalsilent/ip.git","repoName":"ip","organization":"narwhalsilent","domainName":"github"},"branch":"master","displayName":"narwhalsilent/ip[master]","outputFolderName":"narwhalsilent_ip_master"},{"location":{"location":"https://github.com/starsia/ip.git","repoName":"ip","organization":"starsia","domainName":"github"},"branch":"master","displayName":"starsia/ip[master]","outputFolderName":"starsia_ip_master"},{"location":{"location":"https://github.com/AidenLYT/ip.git","repoName":"ip","organization":"AidenLYT","domainName":"github"},"branch":"master","displayName":"AidenLYT/ip[master]","outputFolderName":"AidenLYT_ip_master"},{"location":{"location":"https://github.com/nyankoclaws/ip.git","repoName":"ip","organization":"nyankoclaws","domainName":"github"},"branch":"master","displayName":"nyankoclaws/ip[master]","outputFolderName":"nyankoclaws_ip_master"},{"location":{"location":"https://github.com/angsongyee/ip.git","repoName":"ip","organization":"angsongyee","domainName":"github"},"branch":"master","displayName":"angsongyee/ip[master]","outputFolderName":"angsongyee_ip_master"},{"location":{"location":"https://github.com/eliotlee68/ip.git","repoName":"ip","organization":"eliotlee68","domainName":"github"},"branch":"master","displayName":"eliotlee68/ip[master]","outputFolderName":"eliotlee68_ip_master"},{"location":{"location":"https://github.com/Yskie/ip.git","repoName":"ip","organization":"Yskie","domainName":"github"},"branch":"master","displayName":"Yskie/ip[master]","outputFolderName":"Yskie_ip_master"},{"location":{"location":"https://github.com/faaheem13/ip.git","repoName":"ip","organization":"faaheem13","domainName":"github"},"branch":"master","displayName":"faaheem13/ip[master]","outputFolderName":"faaheem13_ip_master"},{"location":{"location":"https://github.com/Shauryan123/ip.git","repoName":"ip","organization":"Shauryan123","domainName":"github"},"branch":"master","displayName":"Shauryan123/ip[master]","outputFolderName":"Shauryan123_ip_master"},{"location":{"location":"https://github.com/MaYuehan/ip.git","repoName":"ip","organization":"MaYuehan","domainName":"github"},"branch":"master","displayName":"MaYuehan/ip[master]","outputFolderName":"MaYuehan_ip_master"},{"location":{"location":"https://github.com/kaiyi27/ip.git","repoName":"ip","organization":"kaiyi27","domainName":"github"},"branch":"master","displayName":"kaiyi27/ip[master]","outputFolderName":"kaiyi27_ip_master"},{"location":{"location":"https://github.com/radeon2525/ip.git","repoName":"ip","organization":"radeon2525","domainName":"github"},"branch":"master","displayName":"radeon2525/ip[master]","outputFolderName":"radeon2525_ip_master"},{"location":{"location":"https://github.com/dedsecrattle/ip.git","repoName":"ip","organization":"dedsecrattle","domainName":"github"},"branch":"master","displayName":"dedsecrattle/ip[master]","outputFolderName":"dedsecrattle_ip_master"},{"location":{"location":"https://github.com/AdityaB4/ip.git","repoName":"ip","organization":"AdityaB4","domainName":"github"},"branch":"master","displayName":"AdityaB4/ip[master]","outputFolderName":"AdityaB4_ip_master"},{"location":{"location":"https://github.com/PyromancerBoom/ip.git","repoName":"ip","organization":"PyromancerBoom","domainName":"github"},"branch":"master","displayName":"PyromancerBoom/ip[master]","outputFolderName":"PyromancerBoom_ip_master"},{"location":{"location":"https://github.com/JiaXinEu/ip.git","repoName":"ip","organization":"JiaXinEu","domainName":"github"},"branch":"master","displayName":"JiaXinEu/ip[master]","outputFolderName":"JiaXinEu_ip_master"},{"location":{"location":"https://github.com/Ella-e/ip.git","repoName":"ip","organization":"Ella-e","domainName":"github"},"branch":"master","displayName":"Ella-e/ip[master]","outputFolderName":"Ella-e_ip_master"},{"location":{"location":"https://github.com/yiwern5/ip.git","repoName":"ip","organization":"yiwern5","domainName":"github"},"branch":"master","displayName":"yiwern5/ip[master]","outputFolderName":"yiwern5_ip_master"},{"location":{"location":"https://github.com/SamuelZero1/ip.git","repoName":"ip","organization":"SamuelZero1","domainName":"github"},"branch":"master","displayName":"SamuelZero1/ip[master]","outputFolderName":"SamuelZero1_ip_master"},{"location":{"location":"https://github.com/nuyer/ip.git","repoName":"ip","organization":"nuyer","domainName":"github"},"branch":"master","displayName":"nuyer/ip[master]","outputFolderName":"nuyer_ip_master"},{"location":{"location":"https://github.com/SeaHogs/ip.git","repoName":"ip","organization":"SeaHogs","domainName":"github"},"branch":"master","displayName":"SeaHogs/ip[master]","outputFolderName":"SeaHogs_ip_master"},{"location":{"location":"https://github.com/TarinPairor/ip.git","repoName":"ip","organization":"TarinPairor","domainName":"github"},"branch":"master","displayName":"TarinPairor/ip[master]","outputFolderName":"TarinPairor_ip_master"},{"location":{"location":"https://github.com/KSSWSept20/ip.git","repoName":"ip","organization":"KSSWSept20","domainName":"github"},"branch":"master","displayName":"KSSWSept20/ip[master]","outputFolderName":"KSSWSept20_ip_master"},{"location":{"location":"https://github.com/myang2020/ip.git","repoName":"ip","organization":"myang2020","domainName":"github"},"branch":"master","displayName":"myang2020/ip[master]","outputFolderName":"myang2020_ip_master"},{"location":{"location":"https://github.com/leepoeaik/ip.git","repoName":"ip","organization":"leepoeaik","domainName":"github"},"branch":"master","displayName":"leepoeaik/ip[master]","outputFolderName":"leepoeaik_ip_master"},{"location":{"location":"https://github.com/justinlengch/ip.git","repoName":"ip","organization":"justinlengch","domainName":"github"},"branch":"master","displayName":"justinlengch/ip[master]","outputFolderName":"justinlengch_ip_master"},{"location":{"location":"https://github.com/Li-Zizhen/ip.git","repoName":"ip","organization":"Li-Zizhen","domainName":"github"},"branch":"master","displayName":"Li-Zizhen/ip[master]","outputFolderName":"Li-Zizhen_ip_master"},{"location":{"location":"https://github.com/ashleygoh1/ip.git","repoName":"ip","organization":"ashleygoh1","domainName":"github"},"branch":"master","displayName":"ashleygoh1/ip[master]","outputFolderName":"ashleygoh1_ip_master"},{"location":{"location":"https://github.com/Wongqingyee/ip.git","repoName":"ip","organization":"Wongqingyee","domainName":"github"},"branch":"master","displayName":"Wongqingyee/ip[master]","outputFolderName":"Wongqingyee_ip_master"},{"location":{"location":"https://github.com/AjayArvind2207/ip.git","repoName":"ip","organization":"AjayArvind2207","domainName":"github"},"branch":"master","displayName":"AjayArvind2207/ip[master]","outputFolderName":"AjayArvind2207_ip_master"},{"location":{"location":"https://github.com/Austintjh19/ip.git","repoName":"ip","organization":"Austintjh19","domainName":"github"},"branch":"master","displayName":"Austintjh19/ip[master]","outputFolderName":"Austintjh19_ip_master"},{"location":{"location":"https://github.com/jinhanfromNUS/ip.git","repoName":"ip","organization":"jinhanfromNUS","domainName":"github"},"branch":"master","displayName":"jinhanfromNUS/ip[master]","outputFolderName":"jinhanfromNUS_ip_master"},{"location":{"location":"https://github.com/ziyi22/ip.git","repoName":"ip","organization":"ziyi22","domainName":"github"},"branch":"master","displayName":"ziyi22/ip[master]","outputFolderName":"ziyi22_ip_master"},{"location":{"location":"https://github.com/menatahari/ip.git","repoName":"ip","organization":"menatahari","domainName":"github"},"branch":"master","displayName":"menatahari/ip[master]","outputFolderName":"menatahari_ip_master"},{"location":{"location":"https://github.com/ThitipatC/ip.git","repoName":"ip","organization":"ThitipatC","domainName":"github"},"branch":"master","displayName":"ThitipatC/ip[master]","outputFolderName":"ThitipatC_ip_master"},{"location":{"location":"https://github.com/purivirakarin/ip.git","repoName":"ip","organization":"purivirakarin","domainName":"github"},"branch":"master","displayName":"purivirakarin/ip[master]","outputFolderName":"purivirakarin_ip_master"},{"location":{"location":"https://github.com/modembcc/ip.git","repoName":"ip","organization":"modembcc","domainName":"github"},"branch":"master","displayName":"modembcc/ip[master]","outputFolderName":"modembcc_ip_master"},{"location":{"location":"https://github.com/yashma-sonara/ip.git","repoName":"ip","organization":"yashma-sonara","domainName":"github"},"branch":"master","displayName":"yashma-sonara/ip[master]","outputFolderName":"yashma-sonara_ip_master"},{"location":{"location":"https://github.com/0liverkong/ip.git","repoName":"ip","organization":"0liverkong","domainName":"github"},"branch":"master","displayName":"0liverkong/ip[master]","outputFolderName":"0liverkong_ip_master"},{"location":{"location":"https://github.com/dhlee03/ip.git","repoName":"ip","organization":"dhlee03","domainName":"github"},"branch":"master","displayName":"dhlee03/ip[master]","outputFolderName":"dhlee03_ip_master"},{"location":{"location":"https://github.com/shayaansultan/ip.git","repoName":"ip","organization":"shayaansultan","domainName":"github"},"branch":"master","displayName":"shayaansultan/ip[master]","outputFolderName":"shayaansultan_ip_master"},{"location":{"location":"https://github.com/ljy0422/ip.git","repoName":"ip","organization":"ljy0422","domainName":"github"},"branch":"master","displayName":"ljy0422/ip[master]","outputFolderName":"ljy0422_ip_master"},{"location":{"location":"https://github.com/JukeBoxK/ip.git","repoName":"ip","organization":"JukeBoxK","domainName":"github"},"branch":"master","displayName":"JukeBoxK/ip[master]","outputFolderName":"JukeBoxK_ip_master"},{"location":{"location":"https://github.com/Howlong11/ip.git","repoName":"ip","organization":"Howlong11","domainName":"github"},"branch":"master","displayName":"Howlong11/ip[master]","outputFolderName":"Howlong11_ip_master"},{"location":{"location":"https://github.com/Hibeom0929/ip.git","repoName":"ip","organization":"Hibeom0929","domainName":"github"},"branch":"master","displayName":"Hibeom0929/ip[master]","outputFolderName":"Hibeom0929_ip_master"},{"location":{"location":"https://github.com/VatsalVitosh/ip.git","repoName":"ip","organization":"VatsalVitosh","domainName":"github"},"branch":"master","displayName":"VatsalVitosh/ip[master]","outputFolderName":"VatsalVitosh_ip_master"},{"location":{"location":"https://github.com/bachletuankhai/ip.git","repoName":"ip","organization":"bachletuankhai","domainName":"github"},"branch":"master","displayName":"bachletuankhai/ip[master]","outputFolderName":"bachletuankhai_ip_master"},{"location":{"location":"https://github.com/RunjiaChen/ip.git","repoName":"ip","organization":"RunjiaChen","domainName":"github"},"branch":"master","displayName":"RunjiaChen/ip[master]","outputFolderName":"RunjiaChen_ip_master"}],"errorSet":[{"repoName":"Ryan-Reno/ip[master]","errorMessage":"Failed to clone from https://github.com/Ryan-Reno/ip.git"},{"repoName":"tcjazwei/ip[master]","errorMessage":"Failed to clone from https://github.com/tcjazwei/ip.git"},{"repoName":"Morninggloryyy/ip[master]","errorMessage":"Failed to clone from https://github.com/Morninggloryyy/ip.git"},{"repoName":"ValenciaLim/ip[master]","errorMessage":"Failed to clone from https://github.com/ValenciaLim/ip.git"},{"repoName":"nusliuyifan/ip[master]","errorMessage":"Failed to clone from https://github.com/nusliuyifan/ip.git"},{"repoName":"The-Dudeski/ip[master]","errorMessage":"Failed to clone from https://github.com/The-Dudeski/ip.git"}],"sinceDate":"2024-01-19","untilDate":"2024-02-07","isSinceDateProvided":true,"isUntilDateProvided":false,"supportedDomainUrlMap":{"NOT_RECOGNIZED":{"BRANCH":"","REPO_URL":"UNSUPPORTED","BASE_URL":"UNSUPPORTED","HISTORY_PATH":"","COMMIT_PATH":"","BLAME_PATH":""},"github":{"BRANCH":"tree/$BRANCH","REPO_URL":"https://github.com/$ORGANIZATION/$REPO_NAME/","BASE_URL":"https://github.com/","HISTORY_PATH":"commits/$BRANCH/$FILE_PATH","COMMIT_PATH":"commit/$COMMIT_HASH","BLAME_PATH":"blame/$BRANCH/$FILE_PATH"}}} +{"repoSenseVersion":"29903e3124","reportGeneratedTime":"Wed Feb 7 10:39:09 2024 UTC+08:00","reportGenerationTime":" 47.04 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2103 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/darryl-chan/ip.git","repoName":"ip","organization":"darryl-chan","domainName":"github"},"branch":"master","displayName":"darryl-chan/ip[master]","outputFolderName":"darryl-chan_ip_master"},{"location":{"location":"https://github.com/gowthaman-01/ip.git","repoName":"ip","organization":"gowthaman-01","domainName":"github"},"branch":"master","displayName":"gowthaman-01/ip[master]","outputFolderName":"gowthaman-01_ip_master"},{"location":{"location":"https://github.com/ChrisHo1341/ip.git","repoName":"ip","organization":"ChrisHo1341","domainName":"github"},"branch":"master","displayName":"ChrisHo1341/ip[master]","outputFolderName":"ChrisHo1341_ip_master"},{"location":{"location":"https://github.com/sebin0817/ip.git","repoName":"ip","organization":"sebin0817","domainName":"github"},"branch":"master","displayName":"sebin0817/ip[master]","outputFolderName":"sebin0817_ip_master"},{"location":{"location":"https://github.com/tanjiajiajun/ip.git","repoName":"ip","organization":"tanjiajiajun","domainName":"github"},"branch":"master","displayName":"tanjiajiajun/ip[master]","outputFolderName":"tanjiajiajun_ip_master"},{"location":{"location":"https://github.com/Arixeyeion/ip.git","repoName":"ip","organization":"Arixeyeion","domainName":"github"},"branch":"master","displayName":"Arixeyeion/ip[master]","outputFolderName":"Arixeyeion_ip_master"},{"location":{"location":"https://github.com/jeremiahlzz/ip.git","repoName":"ip","organization":"jeremiahlzz","domainName":"github"},"branch":"master","displayName":"jeremiahlzz/ip[master]","outputFolderName":"jeremiahlzz_ip_master"},{"location":{"location":"https://github.com/joenus/ip.git","repoName":"ip","organization":"joenus","domainName":"github"},"branch":"master","displayName":"joenus/ip[master]","outputFolderName":"joenus_ip_master"},{"location":{"location":"https://github.com/xinen26/ip.git","repoName":"ip","organization":"xinen26","domainName":"github"},"branch":"master","displayName":"xinen26/ip[master]","outputFolderName":"xinen26_ip_master"},{"location":{"location":"https://github.com/matthewken19/ip.git","repoName":"ip","organization":"matthewken19","domainName":"github"},"branch":"master","displayName":"matthewken19/ip[master]","outputFolderName":"matthewken19_ip_master"},{"location":{"location":"https://github.com/YuZizhen/ip.git","repoName":"ip","organization":"YuZizhen","domainName":"github"},"branch":"master","displayName":"YuZizhen/ip[master]","outputFolderName":"YuZizhen_ip_master"},{"location":{"location":"https://github.com/marclamp/ip.git","repoName":"ip","organization":"marclamp","domainName":"github"},"branch":"master","displayName":"marclamp/ip[master]","outputFolderName":"marclamp_ip_master"},{"location":{"location":"https://github.com/JerryWang0000/ip.git","repoName":"ip","organization":"JerryWang0000","domainName":"github"},"branch":"master","displayName":"JerryWang0000/ip[master]","outputFolderName":"JerryWang0000_ip_master"},{"location":{"location":"https://github.com/fy17ohhh/ip.git","repoName":"ip","organization":"fy17ohhh","domainName":"github"},"branch":"master","displayName":"fy17ohhh/ip[master]","outputFolderName":"fy17ohhh_ip_master"},{"location":{"location":"https://github.com/lihaoquan/ip.git","repoName":"ip","organization":"lihaoquan","domainName":"github"},"branch":"master","displayName":"lihaoquan/ip[master]","outputFolderName":"lihaoquan_ip_master"},{"location":{"location":"https://github.com/guohuang88/ip.git","repoName":"ip","organization":"guohuang88","domainName":"github"},"branch":"master","displayName":"guohuang88/ip[master]","outputFolderName":"guohuang88_ip_master"},{"location":{"location":"https://github.com/redcolorbicycle/ip.git","repoName":"ip","organization":"redcolorbicycle","domainName":"github"},"branch":"master","displayName":"redcolorbicycle/ip[master]","outputFolderName":"redcolorbicycle_ip_master"},{"location":{"location":"https://github.com/Jerome-j/ip.git","repoName":"ip","organization":"Jerome-j","domainName":"github"},"branch":"master","displayName":"Jerome-j/ip[master]","outputFolderName":"Jerome-j_ip_master"},{"location":{"location":"https://github.com/sethteo/ip.git","repoName":"ip","organization":"sethteo","domainName":"github"},"branch":"master","displayName":"sethteo/ip[master]","outputFolderName":"sethteo_ip_master"},{"location":{"location":"https://github.com/TopKec/ip.git","repoName":"ip","organization":"TopKec","domainName":"github"},"branch":"master","displayName":"TopKec/ip[master]","outputFolderName":"TopKec_ip_master"},{"location":{"location":"https://github.com/joelgoh1/ip.git","repoName":"ip","organization":"joelgoh1","domainName":"github"},"branch":"master","displayName":"joelgoh1/ip[master]","outputFolderName":"joelgoh1_ip_master"},{"location":{"location":"https://github.com/chewbum/ip.git","repoName":"ip","organization":"chewbum","domainName":"github"},"branch":"master","displayName":"chewbum/ip[master]","outputFolderName":"chewbum_ip_master"},{"location":{"location":"https://github.com/timothysashimi/ip.git","repoName":"ip","organization":"timothysashimi","domainName":"github"},"branch":"master","displayName":"timothysashimi/ip[master]","outputFolderName":"timothysashimi_ip_master"},{"location":{"location":"https://github.com/beefsausagee/ip.git","repoName":"ip","organization":"beefsausagee","domainName":"github"},"branch":"master","displayName":"beefsausagee/ip[master]","outputFolderName":"beefsausagee_ip_master"},{"location":{"location":"https://github.com/jaejayrome/ip.git","repoName":"ip","organization":"jaejayrome","domainName":"github"},"branch":"master","displayName":"jaejayrome/ip[master]","outputFolderName":"jaejayrome_ip_master"},{"location":{"location":"https://github.com/KhoonSun47/ip.git","repoName":"ip","organization":"KhoonSun47","domainName":"github"},"branch":"master","displayName":"KhoonSun47/ip[master]","outputFolderName":"KhoonSun47_ip_master"},{"location":{"location":"https://github.com/Dethada/ip.git","repoName":"ip","organization":"Dethada","domainName":"github"},"branch":"master","displayName":"Dethada/ip[master]","outputFolderName":"Dethada_ip_master"},{"location":{"location":"https://github.com/AL-ZT/ip.git","repoName":"ip","organization":"AL-ZT","domainName":"github"},"branch":"master","displayName":"AL-ZT/ip[master]","outputFolderName":"AL-ZT_ip_master"},{"location":{"location":"https://github.com/Javiery3889/ip.git","repoName":"ip","organization":"Javiery3889","domainName":"github"},"branch":"master","displayName":"Javiery3889/ip[master]","outputFolderName":"Javiery3889_ip_master"},{"location":{"location":"https://github.com/garywongkai/ip.git","repoName":"ip","organization":"garywongkai","domainName":"github"},"branch":"master","displayName":"garywongkai/ip[master]","outputFolderName":"garywongkai_ip_master"},{"location":{"location":"https://github.com/ys112/ip.git","repoName":"ip","organization":"ys112","domainName":"github"},"branch":"master","displayName":"ys112/ip[master]","outputFolderName":"ys112_ip_master"},{"location":{"location":"https://github.com/jmsandiegoo/ip.git","repoName":"ip","organization":"jmsandiegoo","domainName":"github"},"branch":"master","displayName":"jmsandiegoo/ip[master]","outputFolderName":"jmsandiegoo_ip_master"},{"location":{"location":"https://github.com/KohGuanZeh/ip.git","repoName":"ip","organization":"KohGuanZeh","domainName":"github"},"branch":"master","displayName":"KohGuanZeh/ip[master]","outputFolderName":"KohGuanZeh_ip_master"},{"location":{"location":"https://github.com/felixchanyy/ip.git","repoName":"ip","organization":"felixchanyy","domainName":"github"},"branch":"master","displayName":"felixchanyy/ip[master]","outputFolderName":"felixchanyy_ip_master"},{"location":{"location":"https://github.com/tanqinyong/ip.git","repoName":"ip","organization":"tanqinyong","domainName":"github"},"branch":"master","displayName":"tanqinyong/ip[master]","outputFolderName":"tanqinyong_ip_master"},{"location":{"location":"https://github.com/Hwww23/ip.git","repoName":"ip","organization":"Hwww23","domainName":"github"},"branch":"master","displayName":"Hwww23/ip[master]","outputFolderName":"Hwww23_ip_master"},{"location":{"location":"https://github.com/zengzihui/ip.git","repoName":"ip","organization":"zengzihui","domainName":"github"},"branch":"master","displayName":"zengzihui/ip[master]","outputFolderName":"zengzihui_ip_master"},{"location":{"location":"https://github.com/Pluiexo/ip.git","repoName":"ip","organization":"Pluiexo","domainName":"github"},"branch":"master","displayName":"Pluiexo/ip[master]","outputFolderName":"Pluiexo_ip_master"},{"location":{"location":"https://github.com/yap-zong-xin/ip.git","repoName":"ip","organization":"yap-zong-xin","domainName":"github"},"branch":"master","displayName":"yap-zong-xin/ip[master]","outputFolderName":"yap-zong-xin_ip_master"},{"location":{"location":"https://github.com/JonChong98/ip.git","repoName":"ip","organization":"JonChong98","domainName":"github"},"branch":"master","displayName":"JonChong98/ip[master]","outputFolderName":"JonChong98_ip_master"},{"location":{"location":"https://github.com/lokidoki102/ip.git","repoName":"ip","organization":"lokidoki102","domainName":"github"},"branch":"master","displayName":"lokidoki102/ip[master]","outputFolderName":"lokidoki102_ip_master"},{"location":{"location":"https://github.com/choowengyan/ip.git","repoName":"ip","organization":"choowengyan","domainName":"github"},"branch":"master","displayName":"choowengyan/ip[master]","outputFolderName":"choowengyan_ip_master"},{"location":{"location":"https://github.com/SherisseTJW/ip.git","repoName":"ip","organization":"SherisseTJW","domainName":"github"},"branch":"master","displayName":"SherisseTJW/ip[master]","outputFolderName":"SherisseTJW_ip_master"},{"location":{"location":"https://github.com/iynixil/ip.git","repoName":"ip","organization":"iynixil","domainName":"github"},"branch":"master","displayName":"iynixil/ip[master]","outputFolderName":"iynixil_ip_master"},{"location":{"location":"https://github.com/whitesnowx/ip.git","repoName":"ip","organization":"whitesnowx","domainName":"github"},"branch":"master","displayName":"whitesnowx/ip[master]","outputFolderName":"whitesnowx_ip_master"},{"location":{"location":"https://github.com/AwJoey/ip.git","repoName":"ip","organization":"AwJoey","domainName":"github"},"branch":"master","displayName":"AwJoey/ip[master]","outputFolderName":"AwJoey_ip_master"},{"location":{"location":"https://github.com/rickkoh/ip.git","repoName":"ip","organization":"rickkoh","domainName":"github"},"branch":"master","displayName":"rickkoh/ip[master]","outputFolderName":"rickkoh_ip_master"},{"location":{"location":"https://github.com/caitlyntang/ip.git","repoName":"ip","organization":"caitlyntang","domainName":"github"},"branch":"master","displayName":"caitlyntang/ip[master]","outputFolderName":"caitlyntang_ip_master"},{"location":{"location":"https://github.com/tsulim/ip.git","repoName":"ip","organization":"tsulim","domainName":"github"},"branch":"master","displayName":"tsulim/ip[master]","outputFolderName":"tsulim_ip_master"},{"location":{"location":"https://github.com/Darylgolden/ip.git","repoName":"ip","organization":"Darylgolden","domainName":"github"},"branch":"master","displayName":"Darylgolden/ip[master]","outputFolderName":"Darylgolden_ip_master"},{"location":{"location":"https://github.com/biinnnggggg/ip.git","repoName":"ip","organization":"biinnnggggg","domainName":"github"},"branch":"master","displayName":"biinnnggggg/ip[master]","outputFolderName":"biinnnggggg_ip_master"},{"location":{"location":"https://github.com/Ma-Yirui/ip.git","repoName":"ip","organization":"Ma-Yirui","domainName":"github"},"branch":"master","displayName":"Ma-Yirui/ip[master]","outputFolderName":"Ma-Yirui_ip_master"},{"location":{"location":"https://github.com/itstrueitstrueitsrealitsreal/ip.git","repoName":"ip","organization":"itstrueitstrueitsrealitsreal","domainName":"github"},"branch":"master","displayName":"itstrueitstrueitsrealitsreal/ip[master]","outputFolderName":"itstrueitstrueitsrealitsreal_ip_master"},{"location":{"location":"https://github.com/vnnamng/ip.git","repoName":"ip","organization":"vnnamng","domainName":"github"},"branch":"master","displayName":"vnnamng/ip[master]","outputFolderName":"vnnamng_ip_master"},{"location":{"location":"https://github.com/minwaiphyo/ip.git","repoName":"ip","organization":"minwaiphyo","domainName":"github"},"branch":"master","displayName":"minwaiphyo/ip[master]","outputFolderName":"minwaiphyo_ip_master"},{"location":{"location":"https://github.com/amanzainal/ip.git","repoName":"ip","organization":"amanzainal","domainName":"github"},"branch":"master","displayName":"amanzainal/ip[master]","outputFolderName":"amanzainal_ip_master"},{"location":{"location":"https://github.com/raysonchia/ip.git","repoName":"ip","organization":"raysonchia","domainName":"github"},"branch":"master","displayName":"raysonchia/ip[master]","outputFolderName":"raysonchia_ip_master"},{"location":{"location":"https://github.com/zoebelle-pang/ip.git","repoName":"ip","organization":"zoebelle-pang","domainName":"github"},"branch":"master","displayName":"zoebelle-pang/ip[master]","outputFolderName":"zoebelle-pang_ip_master"},{"location":{"location":"https://github.com/DominicFuMJ/ip.git","repoName":"ip","organization":"DominicFuMJ","domainName":"github"},"branch":"master","displayName":"DominicFuMJ/ip[master]","outputFolderName":"DominicFuMJ_ip_master"},{"location":{"location":"https://github.com/NeoHW/ip.git","repoName":"ip","organization":"NeoHW","domainName":"github"},"branch":"master","displayName":"NeoHW/ip[master]","outputFolderName":"NeoHW_ip_master"},{"location":{"location":"https://github.com/ZhiWei1010/ip.git","repoName":"ip","organization":"ZhiWei1010","domainName":"github"},"branch":"master","displayName":"ZhiWei1010/ip[master]","outputFolderName":"ZhiWei1010_ip_master"},{"location":{"location":"https://github.com/tankh99/ip.git","repoName":"ip","organization":"tankh99","domainName":"github"},"branch":"master","displayName":"tankh99/ip[master]","outputFolderName":"tankh99_ip_master"},{"location":{"location":"https://github.com/YuvBindal/ip.git","repoName":"ip","organization":"YuvBindal","domainName":"github"},"branch":"master","displayName":"YuvBindal/ip[master]","outputFolderName":"YuvBindal_ip_master"},{"location":{"location":"https://github.com/chiralcentre/ip.git","repoName":"ip","organization":"chiralcentre","domainName":"github"},"branch":"master","displayName":"chiralcentre/ip[master]","outputFolderName":"chiralcentre_ip_master"},{"location":{"location":"https://github.com/cocoanautz/ip.git","repoName":"ip","organization":"cocoanautz","domainName":"github"},"branch":"master","displayName":"cocoanautz/ip[master]","outputFolderName":"cocoanautz_ip_master"},{"location":{"location":"https://github.com/peterXGD/ip.git","repoName":"ip","organization":"peterXGD","domainName":"github"},"branch":"master","displayName":"peterXGD/ip[master]","outputFolderName":"peterXGD_ip_master"},{"location":{"location":"https://github.com/martinng01/ip.git","repoName":"ip","organization":"martinng01","domainName":"github"},"branch":"master","displayName":"martinng01/ip[master]","outputFolderName":"martinng01_ip_master"},{"location":{"location":"https://github.com/pjanthony2001/ip.git","repoName":"ip","organization":"pjanthony2001","domainName":"github"},"branch":"master","displayName":"pjanthony2001/ip[master]","outputFolderName":"pjanthony2001_ip_master"},{"location":{"location":"https://github.com/yuechen2001/ip.git","repoName":"ip","organization":"yuechen2001","domainName":"github"},"branch":"master","displayName":"yuechen2001/ip[master]","outputFolderName":"yuechen2001_ip_master"},{"location":{"location":"https://github.com/SampsonYe1999/ip.git","repoName":"ip","organization":"SampsonYe1999","domainName":"github"},"branch":"master","displayName":"SampsonYe1999/ip[master]","outputFolderName":"SampsonYe1999_ip_master"},{"location":{"location":"https://github.com/ejnan/ip.git","repoName":"ip","organization":"ejnan","domainName":"github"},"branch":"master","displayName":"ejnan/ip[master]","outputFolderName":"ejnan_ip_master"},{"location":{"location":"https://github.com/c-j-lh/ip.git","repoName":"ip","organization":"c-j-lh","domainName":"github"},"branch":"master","displayName":"c-j-lh/ip[master]","outputFolderName":"c-j-lh_ip_master"},{"location":{"location":"https://github.com/xiaorui-ui/ip.git","repoName":"ip","organization":"xiaorui-ui","domainName":"github"},"branch":"master","displayName":"xiaorui-ui/ip[master]","outputFolderName":"xiaorui-ui_ip_master"},{"location":{"location":"https://github.com/qinboan/ip.git","repoName":"ip","organization":"qinboan","domainName":"github"},"branch":"master","displayName":"qinboan/ip[master]","outputFolderName":"qinboan_ip_master"},{"location":{"location":"https://github.com/qinxutan/ip.git","repoName":"ip","organization":"qinxutan","domainName":"github"},"branch":"master","displayName":"qinxutan/ip[master]","outputFolderName":"qinxutan_ip_master"},{"location":{"location":"https://github.com/S-Aishvarya/ip.git","repoName":"ip","organization":"S-Aishvarya","domainName":"github"},"branch":"master","displayName":"S-Aishvarya/ip[master]","outputFolderName":"S-Aishvarya_ip_master"},{"location":{"location":"https://github.com/zhekaiii/ip.git","repoName":"ip","organization":"zhekaiii","domainName":"github"},"branch":"master","displayName":"zhekaiii/ip[master]","outputFolderName":"zhekaiii_ip_master"},{"location":{"location":"https://github.com/taeewonnn/ip.git","repoName":"ip","organization":"taeewonnn","domainName":"github"},"branch":"master","displayName":"taeewonnn/ip[master]","outputFolderName":"taeewonnn_ip_master"},{"location":{"location":"https://github.com/hjungwoo01/ip.git","repoName":"ip","organization":"hjungwoo01","domainName":"github"},"branch":"master","displayName":"hjungwoo01/ip[master]","outputFolderName":"hjungwoo01_ip_master"},{"location":{"location":"https://github.com/ForAeons/ip.git","repoName":"ip","organization":"ForAeons","domainName":"github"},"branch":"master","displayName":"ForAeons/ip[master]","outputFolderName":"ForAeons_ip_master"},{"location":{"location":"https://github.com/minghowC/ip.git","repoName":"ip","organization":"minghowC","domainName":"github"},"branch":"master","displayName":"minghowC/ip[master]","outputFolderName":"minghowC_ip_master"},{"location":{"location":"https://github.com/E0735389/ip.git","repoName":"ip","organization":"E0735389","domainName":"github"},"branch":"master","displayName":"E0735389/ip[master]","outputFolderName":"E0735389_ip_master"},{"location":{"location":"https://github.com/Ty-stan0417/ip.git","repoName":"ip","organization":"Ty-stan0417","domainName":"github"},"branch":"master","displayName":"Ty-stan0417/ip[master]","outputFolderName":"Ty-stan0417_ip_master"},{"location":{"location":"https://github.com/dabzpengu/ip.git","repoName":"ip","organization":"dabzpengu","domainName":"github"},"branch":"master","displayName":"dabzpengu/ip[master]","outputFolderName":"dabzpengu_ip_master"},{"location":{"location":"https://github.com/rizkidelta/ip.git","repoName":"ip","organization":"rizkidelta","domainName":"github"},"branch":"master","displayName":"rizkidelta/ip[master]","outputFolderName":"rizkidelta_ip_master"},{"location":{"location":"https://github.com/wilsonwid/ip.git","repoName":"ip","organization":"wilsonwid","domainName":"github"},"branch":"master","displayName":"wilsonwid/ip[master]","outputFolderName":"wilsonwid_ip_master"},{"location":{"location":"https://github.com/chiageng/ip.git","repoName":"ip","organization":"chiageng","domainName":"github"},"branch":"master","displayName":"chiageng/ip[master]","outputFolderName":"chiageng_ip_master"},{"location":{"location":"https://github.com/julia-cp/ip.git","repoName":"ip","organization":"julia-cp","domainName":"github"},"branch":"master","displayName":"julia-cp/ip[master]","outputFolderName":"julia-cp_ip_master"},{"location":{"location":"https://github.com/ZHANGTIANYAO1/ip.git","repoName":"ip","organization":"ZHANGTIANYAO1","domainName":"github"},"branch":"master","displayName":"ZHANGTIANYAO1/ip[master]","outputFolderName":"ZHANGTIANYAO1_ip_master"},{"location":{"location":"https://github.com/tahsinhasem/ip.git","repoName":"ip","organization":"tahsinhasem","domainName":"github"},"branch":"master","displayName":"tahsinhasem/ip[master]","outputFolderName":"tahsinhasem_ip_master"},{"location":{"location":"https://github.com/LifHoshi/ip.git","repoName":"ip","organization":"LifHoshi","domainName":"github"},"branch":"master","displayName":"LifHoshi/ip[master]","outputFolderName":"LifHoshi_ip_master"},{"location":{"location":"https://github.com/ananya21/ip.git","repoName":"ip","organization":"ananya21","domainName":"github"},"branch":"master","displayName":"ananya21/ip[master]","outputFolderName":"ananya21_ip_master"},{"location":{"location":"https://github.com/acekhoon/ip.git","repoName":"ip","organization":"acekhoon","domainName":"github"},"branch":"master","displayName":"acekhoon/ip[master]","outputFolderName":"acekhoon_ip_master"},{"location":{"location":"https://github.com/willowisp01/ip.git","repoName":"ip","organization":"willowisp01","domainName":"github"},"branch":"master","displayName":"willowisp01/ip[master]","outputFolderName":"willowisp01_ip_master"},{"location":{"location":"https://github.com/Jajared/ip.git","repoName":"ip","organization":"Jajared","domainName":"github"},"branch":"master","displayName":"Jajared/ip[master]","outputFolderName":"Jajared_ip_master"},{"location":{"location":"https://github.com/JerryO3/ip.git","repoName":"ip","organization":"JerryO3","domainName":"github"},"branch":"master","displayName":"JerryO3/ip[master]","outputFolderName":"JerryO3_ip_master"},{"location":{"location":"https://github.com/cyqjoseph/ip.git","repoName":"ip","organization":"cyqjoseph","domainName":"github"},"branch":"master","displayName":"cyqjoseph/ip[master]","outputFolderName":"cyqjoseph_ip_master"},{"location":{"location":"https://github.com/jieqiboh/ip.git","repoName":"ip","organization":"jieqiboh","domainName":"github"},"branch":"master","displayName":"jieqiboh/ip[master]","outputFolderName":"jieqiboh_ip_master"},{"location":{"location":"https://github.com/theman-oj10/ip.git","repoName":"ip","organization":"theman-oj10","domainName":"github"},"branch":"master","displayName":"theman-oj10/ip[master]","outputFolderName":"theman-oj10_ip_master"},{"location":{"location":"https://github.com/owenong1/ip.git","repoName":"ip","organization":"owenong1","domainName":"github"},"branch":"master","displayName":"owenong1/ip[master]","outputFolderName":"owenong1_ip_master"},{"location":{"location":"https://github.com/aureliony/ip.git","repoName":"ip","organization":"aureliony","domainName":"github"},"branch":"master","displayName":"aureliony/ip[master]","outputFolderName":"aureliony_ip_master"},{"location":{"location":"https://github.com/yisiox/ip.git","repoName":"ip","organization":"yisiox","domainName":"github"},"branch":"master","displayName":"yisiox/ip[master]","outputFolderName":"yisiox_ip_master"},{"location":{"location":"https://github.com/Darkarche3/ip.git","repoName":"ip","organization":"Darkarche3","domainName":"github"},"branch":"master","displayName":"Darkarche3/ip[master]","outputFolderName":"Darkarche3_ip_master"},{"location":{"location":"https://github.com/Jolonauh/ip.git","repoName":"ip","organization":"Jolonauh","domainName":"github"},"branch":"master","displayName":"Jolonauh/ip[master]","outputFolderName":"Jolonauh_ip_master"},{"location":{"location":"https://github.com/kervyntan/ip.git","repoName":"ip","organization":"kervyntan","domainName":"github"},"branch":"master","displayName":"kervyntan/ip[master]","outputFolderName":"kervyntan_ip_master"},{"location":{"location":"https://github.com/yashpola/ip.git","repoName":"ip","organization":"yashpola","domainName":"github"},"branch":"master","displayName":"yashpola/ip[master]","outputFolderName":"yashpola_ip_master"},{"location":{"location":"https://github.com/wongkj12/ip.git","repoName":"ip","organization":"wongkj12","domainName":"github"},"branch":"master","displayName":"wongkj12/ip[master]","outputFolderName":"wongkj12_ip_master"},{"location":{"location":"https://github.com/tituschewxj/ip.git","repoName":"ip","organization":"tituschewxj","domainName":"github"},"branch":"master","displayName":"tituschewxj/ip[master]","outputFolderName":"tituschewxj_ip_master"},{"location":{"location":"https://github.com/Zer0Legion/ip.git","repoName":"ip","organization":"Zer0Legion","domainName":"github"},"branch":"master","displayName":"Zer0Legion/ip[master]","outputFolderName":"Zer0Legion_ip_master"},{"location":{"location":"https://github.com/g-tejas/ip.git","repoName":"ip","organization":"g-tejas","domainName":"github"},"branch":"master","displayName":"g-tejas/ip[master]","outputFolderName":"g-tejas_ip_master"},{"location":{"location":"https://github.com/legionlegion/ip.git","repoName":"ip","organization":"legionlegion","domainName":"github"},"branch":"master","displayName":"legionlegion/ip[master]","outputFolderName":"legionlegion_ip_master"},{"location":{"location":"https://github.com/tanguoyang/ip.git","repoName":"ip","organization":"tanguoyang","domainName":"github"},"branch":"master","displayName":"tanguoyang/ip[master]","outputFolderName":"tanguoyang_ip_master"},{"location":{"location":"https://github.com/jovantanyk/ip.git","repoName":"ip","organization":"jovantanyk","domainName":"github"},"branch":"master","displayName":"jovantanyk/ip[master]","outputFolderName":"jovantanyk_ip_master"},{"location":{"location":"https://github.com/Xilef121/ip.git","repoName":"ip","organization":"Xilef121","domainName":"github"},"branch":"master","displayName":"Xilef121/ip[master]","outputFolderName":"Xilef121_ip_master"},{"location":{"location":"https://github.com/ziiqii/ip.git","repoName":"ip","organization":"ziiqii","domainName":"github"},"branch":"master","displayName":"ziiqii/ip[master]","outputFolderName":"ziiqii_ip_master"},{"location":{"location":"https://github.com/Bandov/ip.git","repoName":"ip","organization":"Bandov","domainName":"github"},"branch":"master","displayName":"Bandov/ip[master]","outputFolderName":"Bandov_ip_master"},{"location":{"location":"https://github.com/appleraincoat/ip.git","repoName":"ip","organization":"appleraincoat","domainName":"github"},"branch":"master","displayName":"appleraincoat/ip[master]","outputFolderName":"appleraincoat_ip_master"},{"location":{"location":"https://github.com/belligerentbeagle/ip.git","repoName":"ip","organization":"belligerentbeagle","domainName":"github"},"branch":"master","displayName":"belligerentbeagle/ip[master]","outputFolderName":"belligerentbeagle_ip_master"},{"location":{"location":"https://github.com/limrik/ip.git","repoName":"ip","organization":"limrik","domainName":"github"},"branch":"master","displayName":"limrik/ip[master]","outputFolderName":"limrik_ip_master"},{"location":{"location":"https://github.com/Tsenrae/ip.git","repoName":"ip","organization":"Tsenrae","domainName":"github"},"branch":"master","displayName":"Tsenrae/ip[master]","outputFolderName":"Tsenrae_ip_master"},{"location":{"location":"https://github.com/nichee/ip.git","repoName":"ip","organization":"nichee","domainName":"github"},"branch":"master","displayName":"nichee/ip[master]","outputFolderName":"nichee_ip_master"},{"location":{"location":"https://github.com/justincred/ip.git","repoName":"ip","organization":"justincred","domainName":"github"},"branch":"master","displayName":"justincred/ip[master]","outputFolderName":"justincred_ip_master"},{"location":{"location":"https://github.com/Tanzhiheng26/ip.git","repoName":"ip","organization":"Tanzhiheng26","domainName":"github"},"branch":"master","displayName":"Tanzhiheng26/ip[master]","outputFolderName":"Tanzhiheng26_ip_master"},{"location":{"location":"https://github.com/cliftonchee/ip.git","repoName":"ip","organization":"cliftonchee","domainName":"github"},"branch":"master","displayName":"cliftonchee/ip[master]","outputFolderName":"cliftonchee_ip_master"},{"location":{"location":"https://github.com/SimHanKiong/ip.git","repoName":"ip","organization":"SimHanKiong","domainName":"github"},"branch":"master","displayName":"SimHanKiong/ip[master]","outputFolderName":"SimHanKiong_ip_master"},{"location":{"location":"https://github.com/ChrysanthemumT/ip.git","repoName":"ip","organization":"ChrysanthemumT","domainName":"github"},"branch":"master","displayName":"ChrysanthemumT/ip[master]","outputFolderName":"ChrysanthemumT_ip_master"},{"location":{"location":"https://github.com/jyztintan/ip.git","repoName":"ip","organization":"jyztintan","domainName":"github"},"branch":"master","displayName":"jyztintan/ip[master]","outputFolderName":"jyztintan_ip_master"},{"location":{"location":"https://github.com/ondretann/ip.git","repoName":"ip","organization":"ondretann","domainName":"github"},"branch":"master","displayName":"ondretann/ip[master]","outputFolderName":"ondretann_ip_master"},{"location":{"location":"https://github.com/bryanyee33/ip.git","repoName":"ip","organization":"bryanyee33","domainName":"github"},"branch":"master","displayName":"bryanyee33/ip[master]","outputFolderName":"bryanyee33_ip_master"},{"location":{"location":"https://github.com/chonghaoen/ip.git","repoName":"ip","organization":"chonghaoen","domainName":"github"},"branch":"master","displayName":"chonghaoen/ip[master]","outputFolderName":"chonghaoen_ip_master"},{"location":{"location":"https://github.com/ronnnnnnnnn/ip.git","repoName":"ip","organization":"ronnnnnnnnn","domainName":"github"},"branch":"master","displayName":"ronnnnnnnnn/ip[master]","outputFolderName":"ronnnnnnnnn_ip_master"},{"location":{"location":"https://github.com/ChuaZenKhoon/ip.git","repoName":"ip","organization":"ChuaZenKhoon","domainName":"github"},"branch":"master","displayName":"ChuaZenKhoon/ip[master]","outputFolderName":"ChuaZenKhoon_ip_master"},{"location":{"location":"https://github.com/gerteck/ip.git","repoName":"ip","organization":"gerteck","domainName":"github"},"branch":"master","displayName":"gerteck/ip[master]","outputFolderName":"gerteck_ip_master"},{"location":{"location":"https://github.com/ReganChoy/ip.git","repoName":"ip","organization":"ReganChoy","domainName":"github"},"branch":"master","displayName":"ReganChoy/ip[master]","outputFolderName":"ReganChoy_ip_master"},{"location":{"location":"https://github.com/zhuuyicheng/ip.git","repoName":"ip","organization":"zhuuyicheng","domainName":"github"},"branch":"master","displayName":"zhuuyicheng/ip[master]","outputFolderName":"zhuuyicheng_ip_master"},{"location":{"location":"https://github.com/chaaaaun/ip.git","repoName":"ip","organization":"chaaaaun","domainName":"github"},"branch":"master","displayName":"chaaaaun/ip[master]","outputFolderName":"chaaaaun_ip_master"},{"location":{"location":"https://github.com/ChuaZiLong/ip.git","repoName":"ip","organization":"ChuaZiLong","domainName":"github"},"branch":"master","displayName":"ChuaZiLong/ip[master]","outputFolderName":"ChuaZiLong_ip_master"},{"location":{"location":"https://github.com/Benson15912/ip.git","repoName":"ip","organization":"Benson15912","domainName":"github"},"branch":"master","displayName":"Benson15912/ip[master]","outputFolderName":"Benson15912_ip_master"},{"location":{"location":"https://github.com/c-wenlong/ip.git","repoName":"ip","organization":"c-wenlong","domainName":"github"},"branch":"master","displayName":"c-wenlong/ip[master]","outputFolderName":"c-wenlong_ip_master"},{"location":{"location":"https://github.com/gavin331/ip.git","repoName":"ip","organization":"gavin331","domainName":"github"},"branch":"master","displayName":"gavin331/ip[master]","outputFolderName":"gavin331_ip_master"},{"location":{"location":"https://github.com/CJerrong/ip.git","repoName":"ip","organization":"CJerrong","domainName":"github"},"branch":"master","displayName":"CJerrong/ip[master]","outputFolderName":"CJerrong_ip_master"},{"location":{"location":"https://github.com/ibnu2651/ip.git","repoName":"ip","organization":"ibnu2651","domainName":"github"},"branch":"master","displayName":"ibnu2651/ip[master]","outputFolderName":"ibnu2651_ip_master"},{"location":{"location":"https://github.com/1rbg/ip.git","repoName":"ip","organization":"1rbg","domainName":"github"},"branch":"master","displayName":"1rbg/ip[master]","outputFolderName":"1rbg_ip_master"},{"location":{"location":"https://github.com/alvinnzz/ip.git","repoName":"ip","organization":"alvinnzz","domainName":"github"},"branch":"master","displayName":"alvinnzz/ip[master]","outputFolderName":"alvinnzz_ip_master"},{"location":{"location":"https://github.com/whelan-low/ip.git","repoName":"ip","organization":"whelan-low","domainName":"github"},"branch":"master","displayName":"whelan-low/ip[master]","outputFolderName":"whelan-low_ip_master"},{"location":{"location":"https://github.com/ShanylOng/ip.git","repoName":"ip","organization":"ShanylOng","domainName":"github"},"branch":"master","displayName":"ShanylOng/ip[master]","outputFolderName":"ShanylOng_ip_master"},{"location":{"location":"https://github.com/ReflectiveObsidian/ip.git","repoName":"ip","organization":"ReflectiveObsidian","domainName":"github"},"branch":"master","displayName":"ReflectiveObsidian/ip[master]","outputFolderName":"ReflectiveObsidian_ip_master"},{"location":{"location":"https://github.com/kwuunnn/ip.git","repoName":"ip","organization":"kwuunnn","domainName":"github"},"branch":"master","displayName":"kwuunnn/ip[master]","outputFolderName":"kwuunnn_ip_master"},{"location":{"location":"https://github.com/billyhoce/ip.git","repoName":"ip","organization":"billyhoce","domainName":"github"},"branch":"master","displayName":"billyhoce/ip[master]","outputFolderName":"billyhoce_ip_master"},{"location":{"location":"https://github.com/Ryo-Seah/ip.git","repoName":"ip","organization":"Ryo-Seah","domainName":"github"},"branch":"master","displayName":"Ryo-Seah/ip[master]","outputFolderName":"Ryo-Seah_ip_master"},{"location":{"location":"https://github.com/meowwtama/ip.git","repoName":"ip","organization":"meowwtama","domainName":"github"},"branch":"master","displayName":"meowwtama/ip[master]","outputFolderName":"meowwtama_ip_master"},{"location":{"location":"https://github.com/gingerbreaf/ip.git","repoName":"ip","organization":"gingerbreaf","domainName":"github"},"branch":"master","displayName":"gingerbreaf/ip[master]","outputFolderName":"gingerbreaf_ip_master"},{"location":{"location":"https://github.com/yeoshuheng/ip.git","repoName":"ip","organization":"yeoshuheng","domainName":"github"},"branch":"master","displayName":"yeoshuheng/ip[master]","outputFolderName":"yeoshuheng_ip_master"},{"location":{"location":"https://github.com/shaunlxw/ip.git","repoName":"ip","organization":"shaunlxw","domainName":"github"},"branch":"master","displayName":"shaunlxw/ip[master]","outputFolderName":"shaunlxw_ip_master"},{"location":{"location":"https://github.com/DingBao-sys/ip.git","repoName":"ip","organization":"DingBao-sys","domainName":"github"},"branch":"master","displayName":"DingBao-sys/ip[master]","outputFolderName":"DingBao-sys_ip_master"},{"location":{"location":"https://github.com/ashleyclx/ip.git","repoName":"ip","organization":"ashleyclx","domainName":"github"},"branch":"master","displayName":"ashleyclx/ip[master]","outputFolderName":"ashleyclx_ip_master"},{"location":{"location":"https://github.com/TheodoreKooo/ip.git","repoName":"ip","organization":"TheodoreKooo","domainName":"github"},"branch":"master","displayName":"TheodoreKooo/ip[master]","outputFolderName":"TheodoreKooo_ip_master"},{"location":{"location":"https://github.com/casaarlai/ip.git","repoName":"ip","organization":"casaarlai","domainName":"github"},"branch":"master","displayName":"casaarlai/ip[master]","outputFolderName":"casaarlai_ip_master"},{"location":{"location":"https://github.com/sun-ruiheng/ip.git","repoName":"ip","organization":"sun-ruiheng","domainName":"github"},"branch":"master","displayName":"sun-ruiheng/ip[master]","outputFolderName":"sun-ruiheng_ip_master"},{"location":{"location":"https://github.com/Fidget-Spinner/ip.git","repoName":"ip","organization":"Fidget-Spinner","domainName":"github"},"branch":"master","displayName":"Fidget-Spinner/ip[master]","outputFolderName":"Fidget-Spinner_ip_master"},{"location":{"location":"https://github.com/Cedricaca/ip.git","repoName":"ip","organization":"Cedricaca","domainName":"github"},"branch":"master","displayName":"Cedricaca/ip[master]","outputFolderName":"Cedricaca_ip_master"},{"location":{"location":"https://github.com/YowSiaoKang/ip.git","repoName":"ip","organization":"YowSiaoKang","domainName":"github"},"branch":"master","displayName":"YowSiaoKang/ip[master]","outputFolderName":"YowSiaoKang_ip_master"},{"location":{"location":"https://github.com/J-wang-CSMA/ip.git","repoName":"ip","organization":"J-wang-CSMA","domainName":"github"},"branch":"master","displayName":"J-wang-CSMA/ip[master]","outputFolderName":"J-wang-CSMA_ip_master"},{"location":{"location":"https://github.com/Ragnapop/ip.git","repoName":"ip","organization":"Ragnapop","domainName":"github"},"branch":"master","displayName":"Ragnapop/ip[master]","outputFolderName":"Ragnapop_ip_master"},{"location":{"location":"https://github.com/UdhayaShan1/ip.git","repoName":"ip","organization":"UdhayaShan1","domainName":"github"},"branch":"master","displayName":"UdhayaShan1/ip[master]","outputFolderName":"UdhayaShan1_ip_master"},{"location":{"location":"https://github.com/tayziyi/ip.git","repoName":"ip","organization":"tayziyi","domainName":"github"},"branch":"master","displayName":"tayziyi/ip[master]","outputFolderName":"tayziyi_ip_master"},{"location":{"location":"https://github.com/blaukc/ip.git","repoName":"ip","organization":"blaukc","domainName":"github"},"branch":"master","displayName":"blaukc/ip[master]","outputFolderName":"blaukc_ip_master"},{"location":{"location":"https://github.com/kokerinks/ip.git","repoName":"ip","organization":"kokerinks","domainName":"github"},"branch":"master","displayName":"kokerinks/ip[master]","outputFolderName":"kokerinks_ip_master"},{"location":{"location":"https://github.com/mahadhir247/ip.git","repoName":"ip","organization":"mahadhir247","domainName":"github"},"branch":"master","displayName":"mahadhir247/ip[master]","outputFolderName":"mahadhir247_ip_master"},{"location":{"location":"https://github.com/delishad21/ip.git","repoName":"ip","organization":"delishad21","domainName":"github"},"branch":"master","displayName":"delishad21/ip[master]","outputFolderName":"delishad21_ip_master"},{"location":{"location":"https://github.com/gavingoh99/ip.git","repoName":"ip","organization":"gavingoh99","domainName":"github"},"branch":"master","displayName":"gavingoh99/ip[master]","outputFolderName":"gavingoh99_ip_master"},{"location":{"location":"https://github.com/kjw142857/ip.git","repoName":"ip","organization":"kjw142857","domainName":"github"},"branch":"master","displayName":"kjw142857/ip[master]","outputFolderName":"kjw142857_ip_master"},{"location":{"location":"https://github.com/dayn-1/ip.git","repoName":"ip","organization":"dayn-1","domainName":"github"},"branch":"master","displayName":"dayn-1/ip[master]","outputFolderName":"dayn-1_ip_master"},{"location":{"location":"https://github.com/macareonie/ip.git","repoName":"ip","organization":"macareonie","domainName":"github"},"branch":"master","displayName":"macareonie/ip[master]","outputFolderName":"macareonie_ip_master"},{"location":{"location":"https://github.com/Rikko1204/ip.git","repoName":"ip","organization":"Rikko1204","domainName":"github"},"branch":"master","displayName":"Rikko1204/ip[master]","outputFolderName":"Rikko1204_ip_master"},{"location":{"location":"https://github.com/teojunda/ip.git","repoName":"ip","organization":"teojunda","domainName":"github"},"branch":"master","displayName":"teojunda/ip[master]","outputFolderName":"teojunda_ip_master"},{"location":{"location":"https://github.com/thewongdylan/ip.git","repoName":"ip","organization":"thewongdylan","domainName":"github"},"branch":"master","displayName":"thewongdylan/ip[master]","outputFolderName":"thewongdylan_ip_master"},{"location":{"location":"https://github.com/bertrandong/ip.git","repoName":"ip","organization":"bertrandong","domainName":"github"},"branch":"master","displayName":"bertrandong/ip[master]","outputFolderName":"bertrandong_ip_master"},{"location":{"location":"https://github.com/rertyy/ip.git","repoName":"ip","organization":"rertyy","domainName":"github"},"branch":"master","displayName":"rertyy/ip[master]","outputFolderName":"rertyy_ip_master"},{"location":{"location":"https://github.com/soons1/ip.git","repoName":"ip","organization":"soons1","domainName":"github"},"branch":"master","displayName":"soons1/ip[master]","outputFolderName":"soons1_ip_master"},{"location":{"location":"https://github.com/solomonng2001/ip.git","repoName":"ip","organization":"solomonng2001","domainName":"github"},"branch":"master","displayName":"solomonng2001/ip[master]","outputFolderName":"solomonng2001_ip_master"},{"location":{"location":"https://github.com/guanquann/ip.git","repoName":"ip","organization":"guanquann","domainName":"github"},"branch":"master","displayName":"guanquann/ip[master]","outputFolderName":"guanquann_ip_master"},{"location":{"location":"https://github.com/YuSoonZ/ip.git","repoName":"ip","organization":"YuSoonZ","domainName":"github"},"branch":"master","displayName":"YuSoonZ/ip[master]","outputFolderName":"YuSoonZ_ip_master"},{"location":{"location":"https://github.com/JuliaPoo/ip.git","repoName":"ip","organization":"JuliaPoo","domainName":"github"},"branch":"master","displayName":"JuliaPoo/ip[master]","outputFolderName":"JuliaPoo_ip_master"},{"location":{"location":"https://github.com/dillontkh/ip.git","repoName":"ip","organization":"dillontkh","domainName":"github"},"branch":"master","displayName":"dillontkh/ip[master]","outputFolderName":"dillontkh_ip_master"},{"location":{"location":"https://github.com/camille-readbean/ip.git","repoName":"ip","organization":"camille-readbean","domainName":"github"},"branch":"master","displayName":"camille-readbean/ip[master]","outputFolderName":"camille-readbean_ip_master"},{"location":{"location":"https://github.com/ruijietay/ip.git","repoName":"ip","organization":"ruijietay","domainName":"github"},"branch":"master","displayName":"ruijietay/ip[master]","outputFolderName":"ruijietay_ip_master"},{"location":{"location":"https://github.com/HM33-Stu/ip.git","repoName":"ip","organization":"HM33-Stu","domainName":"github"},"branch":"master","displayName":"HM33-Stu/ip[master]","outputFolderName":"HM33-Stu_ip_master"},{"location":{"location":"https://github.com/nobodyishappy/ip.git","repoName":"ip","organization":"nobodyishappy","domainName":"github"},"branch":"master","displayName":"nobodyishappy/ip[master]","outputFolderName":"nobodyishappy_ip_master"},{"location":{"location":"https://github.com/yadunut/ip.git","repoName":"ip","organization":"yadunut","domainName":"github"},"branch":"master","displayName":"yadunut/ip[master]","outputFolderName":"yadunut_ip_master"},{"location":{"location":"https://github.com/breezetall/ip.git","repoName":"ip","organization":"breezetall","domainName":"github"},"branch":"master","displayName":"breezetall/ip[master]","outputFolderName":"breezetall_ip_master"},{"location":{"location":"https://github.com/jjchee77/ip.git","repoName":"ip","organization":"jjchee77","domainName":"github"},"branch":"master","displayName":"jjchee77/ip[master]","outputFolderName":"jjchee77_ip_master"},{"location":{"location":"https://github.com/BryanL2303/ip.git","repoName":"ip","organization":"BryanL2303","domainName":"github"},"branch":"master","displayName":"BryanL2303/ip[master]","outputFolderName":"BryanL2303_ip_master"},{"location":{"location":"https://github.com/RyanNgWH/ip.git","repoName":"ip","organization":"RyanNgWH","domainName":"github"},"branch":"master","displayName":"RyanNgWH/ip[master]","outputFolderName":"RyanNgWH_ip_master"},{"location":{"location":"https://github.com/Jaspertzx/ip.git","repoName":"ip","organization":"Jaspertzx","domainName":"github"},"branch":"master","displayName":"Jaspertzx/ip[master]","outputFolderName":"Jaspertzx_ip_master"},{"location":{"location":"https://github.com/smolegz/ip.git","repoName":"ip","organization":"smolegz","domainName":"github"},"branch":"master","displayName":"smolegz/ip[master]","outputFolderName":"smolegz_ip_master"},{"location":{"location":"https://github.com/azumieflare/ip.git","repoName":"ip","organization":"azumieflare","domainName":"github"},"branch":"master","displayName":"azumieflare/ip[master]","outputFolderName":"azumieflare_ip_master"},{"location":{"location":"https://github.com/javierng2knus/ip.git","repoName":"ip","organization":"javierng2knus","domainName":"github"},"branch":"master","displayName":"javierng2knus/ip[master]","outputFolderName":"javierng2knus_ip_master"},{"location":{"location":"https://github.com/SimKianSeng/ip.git","repoName":"ip","organization":"SimKianSeng","domainName":"github"},"branch":"master","displayName":"SimKianSeng/ip[master]","outputFolderName":"SimKianSeng_ip_master"},{"location":{"location":"https://github.com/jasperng-nus/ip.git","repoName":"ip","organization":"jasperng-nus","domainName":"github"},"branch":"master","displayName":"jasperng-nus/ip[master]","outputFolderName":"jasperng-nus_ip_master"},{"location":{"location":"https://github.com/HongRay/ip.git","repoName":"ip","organization":"HongRay","domainName":"github"},"branch":"master","displayName":"HongRay/ip[master]","outputFolderName":"HongRay_ip_master"},{"location":{"location":"https://github.com/kailashgautham/ip.git","repoName":"ip","organization":"kailashgautham","domainName":"github"},"branch":"master","displayName":"kailashgautham/ip[master]","outputFolderName":"kailashgautham_ip_master"},{"location":{"location":"https://github.com/zhenghuil/ip.git","repoName":"ip","organization":"zhenghuil","domainName":"github"},"branch":"master","displayName":"zhenghuil/ip[master]","outputFolderName":"zhenghuil_ip_master"},{"location":{"location":"https://github.com/donwong2308/ip.git","repoName":"ip","organization":"donwong2308","domainName":"github"},"branch":"master","displayName":"donwong2308/ip[master]","outputFolderName":"donwong2308_ip_master"},{"location":{"location":"https://github.com/jayllo-c/ip.git","repoName":"ip","organization":"jayllo-c","domainName":"github"},"branch":"master","displayName":"jayllo-c/ip[master]","outputFolderName":"jayllo-c_ip_master"},{"location":{"location":"https://github.com/cheahTJ/ip.git","repoName":"ip","organization":"cheahTJ","domainName":"github"},"branch":"master","displayName":"cheahTJ/ip[master]","outputFolderName":"cheahTJ_ip_master"},{"location":{"location":"https://github.com/triciiaaa/ip.git","repoName":"ip","organization":"triciiaaa","domainName":"github"},"branch":"master","displayName":"triciiaaa/ip[master]","outputFolderName":"triciiaaa_ip_master"},{"location":{"location":"https://github.com/larainezo/ip.git","repoName":"ip","organization":"larainezo","domainName":"github"},"branch":"master","displayName":"larainezo/ip[master]","outputFolderName":"larainezo_ip_master"},{"location":{"location":"https://github.com/kailinteoo/ip.git","repoName":"ip","organization":"kailinteoo","domainName":"github"},"branch":"master","displayName":"kailinteoo/ip[master]","outputFolderName":"kailinteoo_ip_master"},{"location":{"location":"https://github.com/brennalaurentan/ip.git","repoName":"ip","organization":"brennalaurentan","domainName":"github"},"branch":"master","displayName":"brennalaurentan/ip[master]","outputFolderName":"brennalaurentan_ip_master"},{"location":{"location":"https://github.com/GiselleTan/ip.git","repoName":"ip","organization":"GiselleTan","domainName":"github"},"branch":"master","displayName":"GiselleTan/ip[master]","outputFolderName":"GiselleTan_ip_master"},{"location":{"location":"https://github.com/taufiq/ip.git","repoName":"ip","organization":"taufiq","domainName":"github"},"branch":"master","displayName":"taufiq/ip[master]","outputFolderName":"taufiq_ip_master"},{"location":{"location":"https://github.com/xuelinglow/ip.git","repoName":"ip","organization":"xuelinglow","domainName":"github"},"branch":"master","displayName":"xuelinglow/ip[master]","outputFolderName":"xuelinglow_ip_master"},{"location":{"location":"https://github.com/shunjieee/ip.git","repoName":"ip","organization":"shunjieee","domainName":"github"},"branch":"master","displayName":"shunjieee/ip[master]","outputFolderName":"shunjieee_ip_master"},{"location":{"location":"https://github.com/SherwynNg/ip.git","repoName":"ip","organization":"SherwynNg","domainName":"github"},"branch":"master","displayName":"SherwynNg/ip[master]","outputFolderName":"SherwynNg_ip_master"},{"location":{"location":"https://github.com/AndrewOng2066/ip.git","repoName":"ip","organization":"AndrewOng2066","domainName":"github"},"branch":"master","displayName":"AndrewOng2066/ip[master]","outputFolderName":"AndrewOng2066_ip_master"},{"location":{"location":"https://github.com/MarcusGitty/ip.git","repoName":"ip","organization":"MarcusGitty","domainName":"github"},"branch":"master","displayName":"MarcusGitty/ip[master]","outputFolderName":"MarcusGitty_ip_master"},{"location":{"location":"https://github.com/Anant1902/ip.git","repoName":"ip","organization":"Anant1902","domainName":"github"},"branch":"master","displayName":"Anant1902/ip[master]","outputFolderName":"Anant1902_ip_master"},{"location":{"location":"https://github.com/headcube1/ip.git","repoName":"ip","organization":"headcube1","domainName":"github"},"branch":"master","displayName":"headcube1/ip[master]","outputFolderName":"headcube1_ip_master"},{"location":{"location":"https://github.com/jimseah-0116/ip.git","repoName":"ip","organization":"jimseah-0116","domainName":"github"},"branch":"master","displayName":"jimseah-0116/ip[master]","outputFolderName":"jimseah-0116_ip_master"},{"location":{"location":"https://github.com/chuahjiajie/ip.git","repoName":"ip","organization":"chuahjiajie","domainName":"github"},"branch":"master","displayName":"chuahjiajie/ip[master]","outputFolderName":"chuahjiajie_ip_master"},{"location":{"location":"https://github.com/ararchch/ip.git","repoName":"ip","organization":"ararchch","domainName":"github"},"branch":"master","displayName":"ararchch/ip[master]","outputFolderName":"ararchch_ip_master"},{"location":{"location":"https://github.com/chiaryan/ip.git","repoName":"ip","organization":"chiaryan","domainName":"github"},"branch":"master","displayName":"chiaryan/ip[master]","outputFolderName":"chiaryan_ip_master"},{"location":{"location":"https://github.com/chengjunyuan/ip.git","repoName":"ip","organization":"chengjunyuan","domainName":"github"},"branch":"master","displayName":"chengjunyuan/ip[master]","outputFolderName":"chengjunyuan_ip_master"},{"location":{"location":"https://github.com/LimZiJia/ip.git","repoName":"ip","organization":"LimZiJia","domainName":"github"},"branch":"master","displayName":"LimZiJia/ip[master]","outputFolderName":"LimZiJia_ip_master"},{"location":{"location":"https://github.com/darkvoid32/ip.git","repoName":"ip","organization":"darkvoid32","domainName":"github"},"branch":"master","displayName":"darkvoid32/ip[master]","outputFolderName":"darkvoid32_ip_master"},{"location":{"location":"https://github.com/maze508/ip.git","repoName":"ip","organization":"maze508","domainName":"github"},"branch":"master","displayName":"maze508/ip[master]","outputFolderName":"maze508_ip_master"},{"location":{"location":"https://github.com/RingoftheKing/ip.git","repoName":"ip","organization":"RingoftheKing","domainName":"github"},"branch":"master","displayName":"RingoftheKing/ip[master]","outputFolderName":"RingoftheKing_ip_master"},{"location":{"location":"https://github.com/Rishit02/ip.git","repoName":"ip","organization":"Rishit02","domainName":"github"},"branch":"master","displayName":"Rishit02/ip[master]","outputFolderName":"Rishit02_ip_master"},{"location":{"location":"https://github.com/drustanyjt/ip.git","repoName":"ip","organization":"drustanyjt","domainName":"github"},"branch":"master","displayName":"drustanyjt/ip[master]","outputFolderName":"drustanyjt_ip_master"},{"location":{"location":"https://github.com/Dexter-Wong/ip.git","repoName":"ip","organization":"Dexter-Wong","domainName":"github"},"branch":"master","displayName":"Dexter-Wong/ip[master]","outputFolderName":"Dexter-Wong_ip_master"},{"location":{"location":"https://github.com/jxunze/ip.git","repoName":"ip","organization":"jxunze","domainName":"github"},"branch":"master","displayName":"jxunze/ip[master]","outputFolderName":"jxunze_ip_master"},{"location":{"location":"https://github.com/Vision-2000/ip.git","repoName":"ip","organization":"Vision-2000","domainName":"github"},"branch":"master","displayName":"Vision-2000/ip[master]","outputFolderName":"Vision-2000_ip_master"},{"location":{"location":"https://github.com/Derekljh/ip.git","repoName":"ip","organization":"Derekljh","domainName":"github"},"branch":"master","displayName":"Derekljh/ip[master]","outputFolderName":"Derekljh_ip_master"},{"location":{"location":"https://github.com/alphajae11/ip.git","repoName":"ip","organization":"alphajae11","domainName":"github"},"branch":"master","displayName":"alphajae11/ip[master]","outputFolderName":"alphajae11_ip_master"},{"location":{"location":"https://github.com/Kappaccinoh/ip.git","repoName":"ip","organization":"Kappaccinoh","domainName":"github"},"branch":"master","displayName":"Kappaccinoh/ip[master]","outputFolderName":"Kappaccinoh_ip_master"},{"location":{"location":"https://github.com/minreiseah/ip.git","repoName":"ip","organization":"minreiseah","domainName":"github"},"branch":"master","displayName":"minreiseah/ip[master]","outputFolderName":"minreiseah_ip_master"},{"location":{"location":"https://github.com/yuhinarita/ip.git","repoName":"ip","organization":"yuhinarita","domainName":"github"},"branch":"master","displayName":"yuhinarita/ip[master]","outputFolderName":"yuhinarita_ip_master"},{"location":{"location":"https://github.com/quelinxiao/ip.git","repoName":"ip","organization":"quelinxiao","domainName":"github"},"branch":"master","displayName":"quelinxiao/ip[master]","outputFolderName":"quelinxiao_ip_master"},{"location":{"location":"https://github.com/kab-dot/ip.git","repoName":"ip","organization":"kab-dot","domainName":"github"},"branch":"master","displayName":"kab-dot/ip[master]","outputFolderName":"kab-dot_ip_master"},{"location":{"location":"https://github.com/alfaloo/ip.git","repoName":"ip","organization":"alfaloo","domainName":"github"},"branch":"master","displayName":"alfaloo/ip[master]","outputFolderName":"alfaloo_ip_master"},{"location":{"location":"https://github.com/doyelee0313/ip.git","repoName":"ip","organization":"doyelee0313","domainName":"github"},"branch":"master","displayName":"doyelee0313/ip[master]","outputFolderName":"doyelee0313_ip_master"},{"location":{"location":"https://github.com/sdevih/ip.git","repoName":"ip","organization":"sdevih","domainName":"github"},"branch":"master","displayName":"sdevih/ip[master]","outputFolderName":"sdevih_ip_master"},{"location":{"location":"https://github.com/Emberlynn-Loo/ip.git","repoName":"ip","organization":"Emberlynn-Loo","domainName":"github"},"branch":"master","displayName":"Emberlynn-Loo/ip[master]","outputFolderName":"Emberlynn-Loo_ip_master"},{"location":{"location":"https://github.com/tejas-1405/ip.git","repoName":"ip","organization":"tejas-1405","domainName":"github"},"branch":"master","displayName":"tejas-1405/ip[master]","outputFolderName":"tejas-1405_ip_master"},{"location":{"location":"https://github.com/H4mes/ip.git","repoName":"ip","organization":"H4mes","domainName":"github"},"branch":"master","displayName":"H4mes/ip[master]","outputFolderName":"H4mes_ip_master"},{"location":{"location":"https://github.com/ChocoRagdoll/ip.git","repoName":"ip","organization":"ChocoRagdoll","domainName":"github"},"branch":"master","displayName":"ChocoRagdoll/ip[master]","outputFolderName":"ChocoRagdoll_ip_master"},{"location":{"location":"https://github.com/dwangwk/ip.git","repoName":"ip","organization":"dwangwk","domainName":"github"},"branch":"master","displayName":"dwangwk/ip[master]","outputFolderName":"dwangwk_ip_master"},{"location":{"location":"https://github.com/leeweiming3/ip.git","repoName":"ip","organization":"leeweiming3","domainName":"github"},"branch":"master","displayName":"leeweiming3/ip[master]","outputFolderName":"leeweiming3_ip_master"},{"location":{"location":"https://github.com/Wyrkx/ip.git","repoName":"ip","organization":"Wyrkx","domainName":"github"},"branch":"master","displayName":"Wyrkx/ip[master]","outputFolderName":"Wyrkx_ip_master"},{"location":{"location":"https://github.com/jeong-jaeho/ip.git","repoName":"ip","organization":"jeong-jaeho","domainName":"github"},"branch":"master","displayName":"jeong-jaeho/ip[master]","outputFolderName":"jeong-jaeho_ip_master"},{"location":{"location":"https://github.com/tohlh/ip.git","repoName":"ip","organization":"tohlh","domainName":"github"},"branch":"master","displayName":"tohlh/ip[master]","outputFolderName":"tohlh_ip_master"},{"location":{"location":"https://github.com/tzaph/ip.git","repoName":"ip","organization":"tzaph","domainName":"github"},"branch":"master","displayName":"tzaph/ip[master]","outputFolderName":"tzaph_ip_master"},{"location":{"location":"https://github.com/PateShin/ip.git","repoName":"ip","organization":"PateShin","domainName":"github"},"branch":"master","displayName":"PateShin/ip[master]","outputFolderName":"PateShin_ip_master"},{"location":{"location":"https://github.com/PallonCX/ip.git","repoName":"ip","organization":"PallonCX","domainName":"github"},"branch":"master","displayName":"PallonCX/ip[master]","outputFolderName":"PallonCX_ip_master"},{"location":{"location":"https://github.com/benson1029/ip.git","repoName":"ip","organization":"benson1029","domainName":"github"},"branch":"master","displayName":"benson1029/ip[master]","outputFolderName":"benson1029_ip_master"},{"location":{"location":"https://github.com/Kaya3842/ip.git","repoName":"ip","organization":"Kaya3842","domainName":"github"},"branch":"master","displayName":"Kaya3842/ip[master]","outputFolderName":"Kaya3842_ip_master"},{"location":{"location":"https://github.com/JustWeiHao/ip.git","repoName":"ip","organization":"JustWeiHao","domainName":"github"},"branch":"master","displayName":"JustWeiHao/ip[master]","outputFolderName":"JustWeiHao_ip_master"},{"location":{"location":"https://github.com/chin-herng/ip.git","repoName":"ip","organization":"chin-herng","domainName":"github"},"branch":"master","displayName":"chin-herng/ip[master]","outputFolderName":"chin-herng_ip_master"},{"location":{"location":"https://github.com/swtan346/ip.git","repoName":"ip","organization":"swtan346","domainName":"github"},"branch":"master","displayName":"swtan346/ip[master]","outputFolderName":"swtan346_ip_master"},{"location":{"location":"https://github.com/gosongying/ip.git","repoName":"ip","organization":"gosongying","domainName":"github"},"branch":"master","displayName":"gosongying/ip[master]","outputFolderName":"gosongying_ip_master"},{"location":{"location":"https://github.com/IamZhenHong/ip.git","repoName":"ip","organization":"IamZhenHong","domainName":"github"},"branch":"master","displayName":"IamZhenHong/ip[master]","outputFolderName":"IamZhenHong_ip_master"},{"location":{"location":"https://github.com/ivan24004/ip.git","repoName":"ip","organization":"ivan24004","domainName":"github"},"branch":"master","displayName":"ivan24004/ip[master]","outputFolderName":"ivan24004_ip_master"},{"location":{"location":"https://github.com/sarjinius/ip.git","repoName":"ip","organization":"sarjinius","domainName":"github"},"branch":"master","displayName":"sarjinius/ip[master]","outputFolderName":"sarjinius_ip_master"},{"location":{"location":"https://github.com/shavonneg/ip.git","repoName":"ip","organization":"shavonneg","domainName":"github"},"branch":"master","displayName":"shavonneg/ip[master]","outputFolderName":"shavonneg_ip_master"},{"location":{"location":"https://github.com/STELLA-LYE/ip.git","repoName":"ip","organization":"STELLA-LYE","domainName":"github"},"branch":"master","displayName":"STELLA-LYE/ip[master]","outputFolderName":"STELLA-LYE_ip_master"},{"location":{"location":"https://github.com/Lalelulilulela/ip.git","repoName":"ip","organization":"Lalelulilulela","domainName":"github"},"branch":"master","displayName":"Lalelulilulela/ip[master]","outputFolderName":"Lalelulilulela_ip_master"},{"location":{"location":"https://github.com/eunrcn/ip.git","repoName":"ip","organization":"eunrcn","domainName":"github"},"branch":"master","displayName":"eunrcn/ip[master]","outputFolderName":"eunrcn_ip_master"},{"location":{"location":"https://github.com/jocelyn-soh/ip.git","repoName":"ip","organization":"jocelyn-soh","domainName":"github"},"branch":"master","displayName":"jocelyn-soh/ip[master]","outputFolderName":"jocelyn-soh_ip_master"},{"location":{"location":"https://github.com/lynnetteeee/ip.git","repoName":"ip","organization":"lynnetteeee","domainName":"github"},"branch":"master","displayName":"lynnetteeee/ip[master]","outputFolderName":"lynnetteeee_ip_master"},{"location":{"location":"https://github.com/chenyixin0/ip.git","repoName":"ip","organization":"chenyixin0","domainName":"github"},"branch":"master","displayName":"chenyixin0/ip[master]","outputFolderName":"chenyixin0_ip_master"},{"location":{"location":"https://github.com/tanjieling0/ip.git","repoName":"ip","organization":"tanjieling0","domainName":"github"},"branch":"master","displayName":"tanjieling0/ip[master]","outputFolderName":"tanjieling0_ip_master"},{"location":{"location":"https://github.com/alex-setyawan/ip.git","repoName":"ip","organization":"alex-setyawan","domainName":"github"},"branch":"master","displayName":"alex-setyawan/ip[master]","outputFolderName":"alex-setyawan_ip_master"},{"location":{"location":"https://github.com/peienlim/ip.git","repoName":"ip","organization":"peienlim","domainName":"github"},"branch":"master","displayName":"peienlim/ip[master]","outputFolderName":"peienlim_ip_master"},{"location":{"location":"https://github.com/danielleloh/ip.git","repoName":"ip","organization":"danielleloh","domainName":"github"},"branch":"master","displayName":"danielleloh/ip[master]","outputFolderName":"danielleloh_ip_master"},{"location":{"location":"https://github.com/jannaleong/ip.git","repoName":"ip","organization":"jannaleong","domainName":"github"},"branch":"master","displayName":"jannaleong/ip[master]","outputFolderName":"jannaleong_ip_master"},{"location":{"location":"https://github.com/huekoh/ip.git","repoName":"ip","organization":"huekoh","domainName":"github"},"branch":"master","displayName":"huekoh/ip[master]","outputFolderName":"huekoh_ip_master"},{"location":{"location":"https://github.com/wapisai/ip.git","repoName":"ip","organization":"wapisai","domainName":"github"},"branch":"master","displayName":"wapisai/ip[master]","outputFolderName":"wapisai_ip_master"},{"location":{"location":"https://github.com/NatLeong/ip.git","repoName":"ip","organization":"NatLeong","domainName":"github"},"branch":"master","displayName":"NatLeong/ip[master]","outputFolderName":"NatLeong_ip_master"},{"location":{"location":"https://github.com/Pughal77/ip.git","repoName":"ip","organization":"Pughal77","domainName":"github"},"branch":"master","displayName":"Pughal77/ip[master]","outputFolderName":"Pughal77_ip_master"},{"location":{"location":"https://github.com/tahnya/ip.git","repoName":"ip","organization":"tahnya","domainName":"github"},"branch":"master","displayName":"tahnya/ip[master]","outputFolderName":"tahnya_ip_master"},{"location":{"location":"https://github.com/rahhulleee/ip.git","repoName":"ip","organization":"rahhulleee","domainName":"github"},"branch":"master","displayName":"rahhulleee/ip[master]","outputFolderName":"rahhulleee_ip_master"},{"location":{"location":"https://github.com/tamagochuuu/ip.git","repoName":"ip","organization":"tamagochuuu","domainName":"github"},"branch":"master","displayName":"tamagochuuu/ip[master]","outputFolderName":"tamagochuuu_ip_master"},{"location":{"location":"https://github.com/Chiarena/ip.git","repoName":"ip","organization":"Chiarena","domainName":"github"},"branch":"master","displayName":"Chiarena/ip[master]","outputFolderName":"Chiarena_ip_master"},{"location":{"location":"https://github.com/agreatdayy/ip.git","repoName":"ip","organization":"agreatdayy","domainName":"github"},"branch":"master","displayName":"agreatdayy/ip[master]","outputFolderName":"agreatdayy_ip_master"},{"location":{"location":"https://github.com/CaptainKeqing/ip.git","repoName":"ip","organization":"CaptainKeqing","domainName":"github"},"branch":"master","displayName":"CaptainKeqing/ip[master]","outputFolderName":"CaptainKeqing_ip_master"},{"location":{"location":"https://github.com/evedaktyl/ip.git","repoName":"ip","organization":"evedaktyl","domainName":"github"},"branch":"master","displayName":"evedaktyl/ip[master]","outputFolderName":"evedaktyl_ip_master"},{"location":{"location":"https://github.com/zhikaiong2001/ip.git","repoName":"ip","organization":"zhikaiong2001","domainName":"github"},"branch":"master","displayName":"zhikaiong2001/ip[master]","outputFolderName":"zhikaiong2001_ip_master"},{"location":{"location":"https://github.com/johnyoozhengxian/ip.git","repoName":"ip","organization":"johnyoozhengxian","domainName":"github"},"branch":"master","displayName":"johnyoozhengxian/ip[master]","outputFolderName":"johnyoozhengxian_ip_master"},{"location":{"location":"https://github.com/KinTatHo/ip.git","repoName":"ip","organization":"KinTatHo","domainName":"github"},"branch":"master","displayName":"KinTatHo/ip[master]","outputFolderName":"KinTatHo_ip_master"},{"location":{"location":"https://github.com/Joseph31416/ip.git","repoName":"ip","organization":"Joseph31416","domainName":"github"},"branch":"master","displayName":"Joseph31416/ip[master]","outputFolderName":"Joseph31416_ip_master"},{"location":{"location":"https://github.com/Murugan-Maniish/ip.git","repoName":"ip","organization":"Murugan-Maniish","domainName":"github"},"branch":"master","displayName":"Murugan-Maniish/ip[master]","outputFolderName":"Murugan-Maniish_ip_master"},{"location":{"location":"https://github.com/Joshy837/ip.git","repoName":"ip","organization":"Joshy837","domainName":"github"},"branch":"master","displayName":"Joshy837/ip[master]","outputFolderName":"Joshy837_ip_master"},{"location":{"location":"https://github.com/ChenXy128/ip.git","repoName":"ip","organization":"ChenXy128","domainName":"github"},"branch":"master","displayName":"ChenXy128/ip[master]","outputFolderName":"ChenXy128_ip_master"},{"location":{"location":"https://github.com/jamessinmaojun/ip.git","repoName":"ip","organization":"jamessinmaojun","domainName":"github"},"branch":"master","displayName":"jamessinmaojun/ip[master]","outputFolderName":"jamessinmaojun_ip_master"},{"location":{"location":"https://github.com/Joelwang22/ip.git","repoName":"ip","organization":"Joelwang22","domainName":"github"},"branch":"master","displayName":"Joelwang22/ip[master]","outputFolderName":"Joelwang22_ip_master"},{"location":{"location":"https://github.com/shawnnlimm/ip.git","repoName":"ip","organization":"shawnnlimm","domainName":"github"},"branch":"master","displayName":"shawnnlimm/ip[master]","outputFolderName":"shawnnlimm_ip_master"},{"location":{"location":"https://github.com/erv-teo/ip.git","repoName":"ip","organization":"erv-teo","domainName":"github"},"branch":"master","displayName":"erv-teo/ip[master]","outputFolderName":"erv-teo_ip_master"},{"location":{"location":"https://github.com/h4ow3i/ip.git","repoName":"ip","organization":"h4ow3i","domainName":"github"},"branch":"master","displayName":"h4ow3i/ip[master]","outputFolderName":"h4ow3i_ip_master"},{"location":{"location":"https://github.com/ziyang27/ip.git","repoName":"ip","organization":"ziyang27","domainName":"github"},"branch":"master","displayName":"ziyang27/ip[master]","outputFolderName":"ziyang27_ip_master"},{"location":{"location":"https://github.com/FangRuoqing/ip.git","repoName":"ip","organization":"FangRuoqing","domainName":"github"},"branch":"master","displayName":"FangRuoqing/ip[master]","outputFolderName":"FangRuoqing_ip_master"},{"location":{"location":"https://github.com/0nesheep/ip.git","repoName":"ip","organization":"0nesheep","domainName":"github"},"branch":"master","displayName":"0nesheep/ip[master]","outputFolderName":"0nesheep_ip_master"},{"location":{"location":"https://github.com/0-yibai/ip.git","repoName":"ip","organization":"0-yibai","domainName":"github"},"branch":"master","displayName":"0-yibai/ip[master]","outputFolderName":"0-yibai_ip_master"},{"location":{"location":"https://github.com/jerremyng/ip.git","repoName":"ip","organization":"jerremyng","domainName":"github"},"branch":"master","displayName":"jerremyng/ip[master]","outputFolderName":"jerremyng_ip_master"},{"location":{"location":"https://github.com/irwynliong/ip.git","repoName":"ip","organization":"irwynliong","domainName":"github"},"branch":"master","displayName":"irwynliong/ip[master]","outputFolderName":"irwynliong_ip_master"},{"location":{"location":"https://github.com/yorklim/ip.git","repoName":"ip","organization":"yorklim","domainName":"github"},"branch":"master","displayName":"yorklim/ip[master]","outputFolderName":"yorklim_ip_master"},{"location":{"location":"https://github.com/vannykin/ip.git","repoName":"ip","organization":"vannykin","domainName":"github"},"branch":"master","displayName":"vannykin/ip[master]","outputFolderName":"vannykin_ip_master"},{"location":{"location":"https://github.com/laney0808/ip.git","repoName":"ip","organization":"laney0808","domainName":"github"},"branch":"master","displayName":"laney0808/ip[master]","outputFolderName":"laney0808_ip_master"},{"location":{"location":"https://github.com/yapxuanxuan/ip.git","repoName":"ip","organization":"yapxuanxuan","domainName":"github"},"branch":"master","displayName":"yapxuanxuan/ip[master]","outputFolderName":"yapxuanxuan_ip_master"},{"location":{"location":"https://github.com/Greg-Tan/ip.git","repoName":"ip","organization":"Greg-Tan","domainName":"github"},"branch":"master","displayName":"Greg-Tan/ip[master]","outputFolderName":"Greg-Tan_ip_master"},{"location":{"location":"https://github.com/taniatsq/ip.git","repoName":"ip","organization":"taniatsq","domainName":"github"},"branch":"master","displayName":"taniatsq/ip[master]","outputFolderName":"taniatsq_ip_master"},{"location":{"location":"https://github.com/yongkotaro/ip.git","repoName":"ip","organization":"yongkotaro","domainName":"github"},"branch":"master","displayName":"yongkotaro/ip[master]","outputFolderName":"yongkotaro_ip_master"},{"location":{"location":"https://github.com/tanyunchao/ip.git","repoName":"ip","organization":"tanyunchao","domainName":"github"},"branch":"master","displayName":"tanyunchao/ip[master]","outputFolderName":"tanyunchao_ip_master"},{"location":{"location":"https://github.com/KiatLun/ip.git","repoName":"ip","organization":"KiatLun","domainName":"github"},"branch":"master","displayName":"KiatLun/ip[master]","outputFolderName":"KiatLun_ip_master"},{"location":{"location":"https://github.com/Xuyan0518/ip.git","repoName":"ip","organization":"Xuyan0518","domainName":"github"},"branch":"master","displayName":"Xuyan0518/ip[master]","outputFolderName":"Xuyan0518_ip_master"},{"location":{"location":"https://github.com/cleowenxuan/ip.git","repoName":"ip","organization":"cleowenxuan","domainName":"github"},"branch":"master","displayName":"cleowenxuan/ip[master]","outputFolderName":"cleowenxuan_ip_master"},{"location":{"location":"https://github.com/logical-1985516/ip.git","repoName":"ip","organization":"logical-1985516","domainName":"github"},"branch":"master","displayName":"logical-1985516/ip[master]","outputFolderName":"logical-1985516_ip_master"},{"location":{"location":"https://github.com/jessicawyz/ip.git","repoName":"ip","organization":"jessicawyz","domainName":"github"},"branch":"master","displayName":"jessicawyz/ip[master]","outputFolderName":"jessicawyz_ip_master"},{"location":{"location":"https://github.com/ashleyy2444/ip.git","repoName":"ip","organization":"ashleyy2444","domainName":"github"},"branch":"master","displayName":"ashleyy2444/ip[master]","outputFolderName":"ashleyy2444_ip_master"},{"location":{"location":"https://github.com/tengcharmaine/ip.git","repoName":"ip","organization":"tengcharmaine","domainName":"github"},"branch":"master","displayName":"tengcharmaine/ip[master]","outputFolderName":"tengcharmaine_ip_master"},{"location":{"location":"https://github.com/Jawad280/ip.git","repoName":"ip","organization":"Jawad280","domainName":"github"},"branch":"master","displayName":"Jawad280/ip[master]","outputFolderName":"Jawad280_ip_master"},{"location":{"location":"https://github.com/ThatGirlJam/ip.git","repoName":"ip","organization":"ThatGirlJam","domainName":"github"},"branch":"master","displayName":"ThatGirlJam/ip[master]","outputFolderName":"ThatGirlJam_ip_master"},{"location":{"location":"https://github.com/saiutkarsh33/ip.git","repoName":"ip","organization":"saiutkarsh33","domainName":"github"},"branch":"master","displayName":"saiutkarsh33/ip[master]","outputFolderName":"saiutkarsh33_ip_master"},{"location":{"location":"https://github.com/meenulekha/ip.git","repoName":"ip","organization":"meenulekha","domainName":"github"},"branch":"master","displayName":"meenulekha/ip[master]","outputFolderName":"meenulekha_ip_master"},{"location":{"location":"https://github.com/LargeCrowd/ip.git","repoName":"ip","organization":"LargeCrowd","domainName":"github"},"branch":"master","displayName":"LargeCrowd/ip[master]","outputFolderName":"LargeCrowd_ip_master"},{"location":{"location":"https://github.com/linnn-7/ip.git","repoName":"ip","organization":"linnn-7","domainName":"github"},"branch":"master","displayName":"linnn-7/ip[master]","outputFolderName":"linnn-7_ip_master"},{"location":{"location":"https://github.com/maiyasaliha/ip.git","repoName":"ip","organization":"maiyasaliha","domainName":"github"},"branch":"master","displayName":"maiyasaliha/ip[master]","outputFolderName":"maiyasaliha_ip_master"},{"location":{"location":"https://github.com/jonpwk/ip.git","repoName":"ip","organization":"jonpwk","domainName":"github"},"branch":"master","displayName":"jonpwk/ip[master]","outputFolderName":"jonpwk_ip_master"},{"location":{"location":"https://github.com/ChillinRage/ip.git","repoName":"ip","organization":"ChillinRage","domainName":"github"},"branch":"master","displayName":"ChillinRage/ip[master]","outputFolderName":"ChillinRage_ip_master"},{"location":{"location":"https://github.com/moguries/ip.git","repoName":"ip","organization":"moguries","domainName":"github"},"branch":"master","displayName":"moguries/ip[master]","outputFolderName":"moguries_ip_master"},{"location":{"location":"https://github.com/Alteqa/ip.git","repoName":"ip","organization":"Alteqa","domainName":"github"},"branch":"master","displayName":"Alteqa/ip[master]","outputFolderName":"Alteqa_ip_master"},{"location":{"location":"https://github.com/Zack-Tay/ip.git","repoName":"ip","organization":"Zack-Tay","domainName":"github"},"branch":"master","displayName":"Zack-Tay/ip[master]","outputFolderName":"Zack-Tay_ip_master"},{"location":{"location":"https://github.com/marcus-ny/ip.git","repoName":"ip","organization":"marcus-ny","domainName":"github"},"branch":"master","displayName":"marcus-ny/ip[master]","outputFolderName":"marcus-ny_ip_master"},{"location":{"location":"https://github.com/bennyLCK/ip.git","repoName":"ip","organization":"bennyLCK","domainName":"github"},"branch":"master","displayName":"bennyLCK/ip[master]","outputFolderName":"bennyLCK_ip_master"},{"location":{"location":"https://github.com/kinjalagarwal1810/ip.git","repoName":"ip","organization":"kinjalagarwal1810","domainName":"github"},"branch":"master","displayName":"kinjalagarwal1810/ip[master]","outputFolderName":"kinjalagarwal1810_ip_master"},{"location":{"location":"https://github.com/R-Laksh/ip.git","repoName":"ip","organization":"R-Laksh","domainName":"github"},"branch":"master","displayName":"R-Laksh/ip[master]","outputFolderName":"R-Laksh_ip_master"},{"location":{"location":"https://github.com/Colex2000/ip.git","repoName":"ip","organization":"Colex2000","domainName":"github"},"branch":"master","displayName":"Colex2000/ip[master]","outputFolderName":"Colex2000_ip_master"},{"location":{"location":"https://github.com/DhiraPT/ip.git","repoName":"ip","organization":"DhiraPT","domainName":"github"},"branch":"master","displayName":"DhiraPT/ip[master]","outputFolderName":"DhiraPT_ip_master"},{"location":{"location":"https://github.com/yyccbb/ip.git","repoName":"ip","organization":"yyccbb","domainName":"github"},"branch":"master","displayName":"yyccbb/ip[master]","outputFolderName":"yyccbb_ip_master"},{"location":{"location":"https://github.com/nigel27022001/ip.git","repoName":"ip","organization":"nigel27022001","domainName":"github"},"branch":"master","displayName":"nigel27022001/ip[master]","outputFolderName":"nigel27022001_ip_master"},{"location":{"location":"https://github.com/shamesjen/ip.git","repoName":"ip","organization":"shamesjen","domainName":"github"},"branch":"master","displayName":"shamesjen/ip[master]","outputFolderName":"shamesjen_ip_master"},{"location":{"location":"https://github.com/sindhurajain/ip.git","repoName":"ip","organization":"sindhurajain","domainName":"github"},"branch":"master","displayName":"sindhurajain/ip[master]","outputFolderName":"sindhurajain_ip_master"},{"location":{"location":"https://github.com/ryanlimdx/ip.git","repoName":"ip","organization":"ryanlimdx","domainName":"github"},"branch":"master","displayName":"ryanlimdx/ip[master]","outputFolderName":"ryanlimdx_ip_master"},{"location":{"location":"https://github.com/hiivan/ip.git","repoName":"ip","organization":"hiivan","domainName":"github"},"branch":"master","displayName":"hiivan/ip[master]","outputFolderName":"hiivan_ip_master"},{"location":{"location":"https://github.com/Apzure/ip.git","repoName":"ip","organization":"Apzure","domainName":"github"},"branch":"master","displayName":"Apzure/ip[master]","outputFolderName":"Apzure_ip_master"},{"location":{"location":"https://github.com/bgopi23/ip.git","repoName":"ip","organization":"bgopi23","domainName":"github"},"branch":"master","displayName":"bgopi23/ip[master]","outputFolderName":"bgopi23_ip_master"},{"location":{"location":"https://github.com/LWS49/ip.git","repoName":"ip","organization":"LWS49","domainName":"github"},"branch":"master","displayName":"LWS49/ip[master]","outputFolderName":"LWS49_ip_master"},{"location":{"location":"https://github.com/wang-xinrong/ip.git","repoName":"ip","organization":"wang-xinrong","domainName":"github"},"branch":"master","displayName":"wang-xinrong/ip[master]","outputFolderName":"wang-xinrong_ip_master"},{"location":{"location":"https://github.com/HusseinSafwan02/ip.git","repoName":"ip","organization":"HusseinSafwan02","domainName":"github"},"branch":"master","displayName":"HusseinSafwan02/ip[master]","outputFolderName":"HusseinSafwan02_ip_master"},{"location":{"location":"https://github.com/Ko-Khan/ip.git","repoName":"ip","organization":"Ko-Khan","domainName":"github"},"branch":"master","displayName":"Ko-Khan/ip[master]","outputFolderName":"Ko-Khan_ip_master"},{"location":{"location":"https://github.com/yleeyilin/ip.git","repoName":"ip","organization":"yleeyilin","domainName":"github"},"branch":"master","displayName":"yleeyilin/ip[master]","outputFolderName":"yleeyilin_ip_master"},{"location":{"location":"https://github.com/jiahui0309/ip.git","repoName":"ip","organization":"jiahui0309","domainName":"github"},"branch":"master","displayName":"jiahui0309/ip[master]","outputFolderName":"jiahui0309_ip_master"},{"location":{"location":"https://github.com/Jayne1010/ip.git","repoName":"ip","organization":"Jayne1010","domainName":"github"},"branch":"master","displayName":"Jayne1010/ip[master]","outputFolderName":"Jayne1010_ip_master"},{"location":{"location":"https://github.com/getsquared/ip.git","repoName":"ip","organization":"getsquared","domainName":"github"},"branch":"master","displayName":"getsquared/ip[master]","outputFolderName":"getsquared_ip_master"},{"location":{"location":"https://github.com/kaitinghh/ip.git","repoName":"ip","organization":"kaitinghh","domainName":"github"},"branch":"master","displayName":"kaitinghh/ip[master]","outputFolderName":"kaitinghh_ip_master"},{"location":{"location":"https://github.com/4llysa/ip.git","repoName":"ip","organization":"4llysa","domainName":"github"},"branch":"master","displayName":"4llysa/ip[master]","outputFolderName":"4llysa_ip_master"},{"location":{"location":"https://github.com/Lin-Shuang-Shuang/ip.git","repoName":"ip","organization":"Lin-Shuang-Shuang","domainName":"github"},"branch":"master","displayName":"Lin-Shuang-Shuang/ip[master]","outputFolderName":"Lin-Shuang-Shuang_ip_master"},{"location":{"location":"https://github.com/youdonnnn/ip.git","repoName":"ip","organization":"youdonnnn","domainName":"github"},"branch":"master","displayName":"youdonnnn/ip[master]","outputFolderName":"youdonnnn_ip_master"},{"location":{"location":"https://github.com/xuwen-ho/ip.git","repoName":"ip","organization":"xuwen-ho","domainName":"github"},"branch":"master","displayName":"xuwen-ho/ip[master]","outputFolderName":"xuwen-ho_ip_master"},{"location":{"location":"https://github.com/ongzhili/ip.git","repoName":"ip","organization":"ongzhili","domainName":"github"},"branch":"master","displayName":"ongzhili/ip[master]","outputFolderName":"ongzhili_ip_master"},{"location":{"location":"https://github.com/miffi/ip.git","repoName":"ip","organization":"miffi","domainName":"github"},"branch":"master","displayName":"miffi/ip[master]","outputFolderName":"miffi_ip_master"},{"location":{"location":"https://github.com/wallacexuhanxiao/ip.git","repoName":"ip","organization":"wallacexuhanxiao","domainName":"github"},"branch":"master","displayName":"wallacexuhanxiao/ip[master]","outputFolderName":"wallacexuhanxiao_ip_master"},{"location":{"location":"https://github.com/Teee728/ip.git","repoName":"ip","organization":"Teee728","domainName":"github"},"branch":"master","displayName":"Teee728/ip[master]","outputFolderName":"Teee728_ip_master"},{"location":{"location":"https://github.com/wolffe88/ip.git","repoName":"ip","organization":"wolffe88","domainName":"github"},"branch":"master","displayName":"wolffe88/ip[master]","outputFolderName":"wolffe88_ip_master"},{"location":{"location":"https://github.com/jskimdev/ip.git","repoName":"ip","organization":"jskimdev","domainName":"github"},"branch":"master","displayName":"jskimdev/ip[master]","outputFolderName":"jskimdev_ip_master"},{"location":{"location":"https://github.com/reetmitra/ip.git","repoName":"ip","organization":"reetmitra","domainName":"github"},"branch":"master","displayName":"reetmitra/ip[master]","outputFolderName":"reetmitra_ip_master"},{"location":{"location":"https://github.com/iamtr/ip.git","repoName":"ip","organization":"iamtr","domainName":"github"},"branch":"master","displayName":"iamtr/ip[master]","outputFolderName":"iamtr_ip_master"},{"location":{"location":"https://github.com/officialchengyud/ip.git","repoName":"ip","organization":"officialchengyud","domainName":"github"},"branch":"master","displayName":"officialchengyud/ip[master]","outputFolderName":"officialchengyud_ip_master"},{"location":{"location":"https://github.com/GERARDJM018/ip.git","repoName":"ip","organization":"GERARDJM018","domainName":"github"},"branch":"master","displayName":"GERARDJM018/ip[master]","outputFolderName":"GERARDJM018_ip_master"},{"location":{"location":"https://github.com/howen02/ip.git","repoName":"ip","organization":"howen02","domainName":"github"},"branch":"master","displayName":"howen02/ip[master]","outputFolderName":"howen02_ip_master"},{"location":{"location":"https://github.com/NusMinato/ip.git","repoName":"ip","organization":"NusMinato","domainName":"github"},"branch":"master","displayName":"NusMinato/ip[master]","outputFolderName":"NusMinato_ip_master"},{"location":{"location":"https://github.com/hjuntan/ip.git","repoName":"ip","organization":"hjuntan","domainName":"github"},"branch":"master","displayName":"hjuntan/ip[master]","outputFolderName":"hjuntan_ip_master"},{"location":{"location":"https://github.com/gauravuj/ip.git","repoName":"ip","organization":"gauravuj","domainName":"github"},"branch":"master","displayName":"gauravuj/ip[master]","outputFolderName":"gauravuj_ip_master"},{"location":{"location":"https://github.com/yespiggy/ip.git","repoName":"ip","organization":"yespiggy","domainName":"github"},"branch":"master","displayName":"yespiggy/ip[master]","outputFolderName":"yespiggy_ip_master"},{"location":{"location":"https://github.com/Windofbitter/ip.git","repoName":"ip","organization":"Windofbitter","domainName":"github"},"branch":"master","displayName":"Windofbitter/ip[master]","outputFolderName":"Windofbitter_ip_master"},{"location":{"location":"https://github.com/NewtonKoh/ip.git","repoName":"ip","organization":"NewtonKoh","domainName":"github"},"branch":"master","displayName":"NewtonKoh/ip[master]","outputFolderName":"NewtonKoh_ip_master"},{"location":{"location":"https://github.com/narwhalsilent/ip.git","repoName":"ip","organization":"narwhalsilent","domainName":"github"},"branch":"master","displayName":"narwhalsilent/ip[master]","outputFolderName":"narwhalsilent_ip_master"},{"location":{"location":"https://github.com/starsia/ip.git","repoName":"ip","organization":"starsia","domainName":"github"},"branch":"master","displayName":"starsia/ip[master]","outputFolderName":"starsia_ip_master"},{"location":{"location":"https://github.com/AidenLYT/ip.git","repoName":"ip","organization":"AidenLYT","domainName":"github"},"branch":"master","displayName":"AidenLYT/ip[master]","outputFolderName":"AidenLYT_ip_master"},{"location":{"location":"https://github.com/nyankoclaws/ip.git","repoName":"ip","organization":"nyankoclaws","domainName":"github"},"branch":"master","displayName":"nyankoclaws/ip[master]","outputFolderName":"nyankoclaws_ip_master"},{"location":{"location":"https://github.com/angsongyee/ip.git","repoName":"ip","organization":"angsongyee","domainName":"github"},"branch":"master","displayName":"angsongyee/ip[master]","outputFolderName":"angsongyee_ip_master"},{"location":{"location":"https://github.com/eliotlee68/ip.git","repoName":"ip","organization":"eliotlee68","domainName":"github"},"branch":"master","displayName":"eliotlee68/ip[master]","outputFolderName":"eliotlee68_ip_master"},{"location":{"location":"https://github.com/Yskie/ip.git","repoName":"ip","organization":"Yskie","domainName":"github"},"branch":"master","displayName":"Yskie/ip[master]","outputFolderName":"Yskie_ip_master"},{"location":{"location":"https://github.com/faaheem13/ip.git","repoName":"ip","organization":"faaheem13","domainName":"github"},"branch":"master","displayName":"faaheem13/ip[master]","outputFolderName":"faaheem13_ip_master"},{"location":{"location":"https://github.com/Shauryan123/ip.git","repoName":"ip","organization":"Shauryan123","domainName":"github"},"branch":"master","displayName":"Shauryan123/ip[master]","outputFolderName":"Shauryan123_ip_master"},{"location":{"location":"https://github.com/MaYuehan/ip.git","repoName":"ip","organization":"MaYuehan","domainName":"github"},"branch":"master","displayName":"MaYuehan/ip[master]","outputFolderName":"MaYuehan_ip_master"},{"location":{"location":"https://github.com/kaiyi27/ip.git","repoName":"ip","organization":"kaiyi27","domainName":"github"},"branch":"master","displayName":"kaiyi27/ip[master]","outputFolderName":"kaiyi27_ip_master"},{"location":{"location":"https://github.com/radeon2525/ip.git","repoName":"ip","organization":"radeon2525","domainName":"github"},"branch":"master","displayName":"radeon2525/ip[master]","outputFolderName":"radeon2525_ip_master"},{"location":{"location":"https://github.com/dedsecrattle/ip.git","repoName":"ip","organization":"dedsecrattle","domainName":"github"},"branch":"master","displayName":"dedsecrattle/ip[master]","outputFolderName":"dedsecrattle_ip_master"},{"location":{"location":"https://github.com/AdityaB4/ip.git","repoName":"ip","organization":"AdityaB4","domainName":"github"},"branch":"master","displayName":"AdityaB4/ip[master]","outputFolderName":"AdityaB4_ip_master"},{"location":{"location":"https://github.com/PyromancerBoom/ip.git","repoName":"ip","organization":"PyromancerBoom","domainName":"github"},"branch":"master","displayName":"PyromancerBoom/ip[master]","outputFolderName":"PyromancerBoom_ip_master"},{"location":{"location":"https://github.com/JiaXinEu/ip.git","repoName":"ip","organization":"JiaXinEu","domainName":"github"},"branch":"master","displayName":"JiaXinEu/ip[master]","outputFolderName":"JiaXinEu_ip_master"},{"location":{"location":"https://github.com/Ella-e/ip.git","repoName":"ip","organization":"Ella-e","domainName":"github"},"branch":"master","displayName":"Ella-e/ip[master]","outputFolderName":"Ella-e_ip_master"},{"location":{"location":"https://github.com/yiwern5/ip.git","repoName":"ip","organization":"yiwern5","domainName":"github"},"branch":"master","displayName":"yiwern5/ip[master]","outputFolderName":"yiwern5_ip_master"},{"location":{"location":"https://github.com/SamuelZero1/ip.git","repoName":"ip","organization":"SamuelZero1","domainName":"github"},"branch":"master","displayName":"SamuelZero1/ip[master]","outputFolderName":"SamuelZero1_ip_master"},{"location":{"location":"https://github.com/nuyer/ip.git","repoName":"ip","organization":"nuyer","domainName":"github"},"branch":"master","displayName":"nuyer/ip[master]","outputFolderName":"nuyer_ip_master"},{"location":{"location":"https://github.com/SeaHogs/ip.git","repoName":"ip","organization":"SeaHogs","domainName":"github"},"branch":"master","displayName":"SeaHogs/ip[master]","outputFolderName":"SeaHogs_ip_master"},{"location":{"location":"https://github.com/TarinPairor/ip.git","repoName":"ip","organization":"TarinPairor","domainName":"github"},"branch":"master","displayName":"TarinPairor/ip[master]","outputFolderName":"TarinPairor_ip_master"},{"location":{"location":"https://github.com/KSSWSept20/ip.git","repoName":"ip","organization":"KSSWSept20","domainName":"github"},"branch":"master","displayName":"KSSWSept20/ip[master]","outputFolderName":"KSSWSept20_ip_master"},{"location":{"location":"https://github.com/myang2020/ip.git","repoName":"ip","organization":"myang2020","domainName":"github"},"branch":"master","displayName":"myang2020/ip[master]","outputFolderName":"myang2020_ip_master"},{"location":{"location":"https://github.com/leepoeaik/ip.git","repoName":"ip","organization":"leepoeaik","domainName":"github"},"branch":"master","displayName":"leepoeaik/ip[master]","outputFolderName":"leepoeaik_ip_master"},{"location":{"location":"https://github.com/justinlengch/ip.git","repoName":"ip","organization":"justinlengch","domainName":"github"},"branch":"master","displayName":"justinlengch/ip[master]","outputFolderName":"justinlengch_ip_master"},{"location":{"location":"https://github.com/Li-Zizhen/ip.git","repoName":"ip","organization":"Li-Zizhen","domainName":"github"},"branch":"master","displayName":"Li-Zizhen/ip[master]","outputFolderName":"Li-Zizhen_ip_master"},{"location":{"location":"https://github.com/ashleygoh1/ip.git","repoName":"ip","organization":"ashleygoh1","domainName":"github"},"branch":"master","displayName":"ashleygoh1/ip[master]","outputFolderName":"ashleygoh1_ip_master"},{"location":{"location":"https://github.com/Wongqingyee/ip.git","repoName":"ip","organization":"Wongqingyee","domainName":"github"},"branch":"master","displayName":"Wongqingyee/ip[master]","outputFolderName":"Wongqingyee_ip_master"},{"location":{"location":"https://github.com/AjayArvind2207/ip.git","repoName":"ip","organization":"AjayArvind2207","domainName":"github"},"branch":"master","displayName":"AjayArvind2207/ip[master]","outputFolderName":"AjayArvind2207_ip_master"},{"location":{"location":"https://github.com/Austintjh19/ip.git","repoName":"ip","organization":"Austintjh19","domainName":"github"},"branch":"master","displayName":"Austintjh19/ip[master]","outputFolderName":"Austintjh19_ip_master"},{"location":{"location":"https://github.com/jinhanfromNUS/ip.git","repoName":"ip","organization":"jinhanfromNUS","domainName":"github"},"branch":"master","displayName":"jinhanfromNUS/ip[master]","outputFolderName":"jinhanfromNUS_ip_master"},{"location":{"location":"https://github.com/ziyi22/ip.git","repoName":"ip","organization":"ziyi22","domainName":"github"},"branch":"master","displayName":"ziyi22/ip[master]","outputFolderName":"ziyi22_ip_master"},{"location":{"location":"https://github.com/menatahari/ip.git","repoName":"ip","organization":"menatahari","domainName":"github"},"branch":"master","displayName":"menatahari/ip[master]","outputFolderName":"menatahari_ip_master"},{"location":{"location":"https://github.com/ThitipatC/ip.git","repoName":"ip","organization":"ThitipatC","domainName":"github"},"branch":"master","displayName":"ThitipatC/ip[master]","outputFolderName":"ThitipatC_ip_master"},{"location":{"location":"https://github.com/purivirakarin/ip.git","repoName":"ip","organization":"purivirakarin","domainName":"github"},"branch":"master","displayName":"purivirakarin/ip[master]","outputFolderName":"purivirakarin_ip_master"},{"location":{"location":"https://github.com/modembcc/ip.git","repoName":"ip","organization":"modembcc","domainName":"github"},"branch":"master","displayName":"modembcc/ip[master]","outputFolderName":"modembcc_ip_master"},{"location":{"location":"https://github.com/yashma-sonara/ip.git","repoName":"ip","organization":"yashma-sonara","domainName":"github"},"branch":"master","displayName":"yashma-sonara/ip[master]","outputFolderName":"yashma-sonara_ip_master"},{"location":{"location":"https://github.com/0liverkong/ip.git","repoName":"ip","organization":"0liverkong","domainName":"github"},"branch":"master","displayName":"0liverkong/ip[master]","outputFolderName":"0liverkong_ip_master"},{"location":{"location":"https://github.com/dhlee03/ip.git","repoName":"ip","organization":"dhlee03","domainName":"github"},"branch":"master","displayName":"dhlee03/ip[master]","outputFolderName":"dhlee03_ip_master"},{"location":{"location":"https://github.com/shayaansultan/ip.git","repoName":"ip","organization":"shayaansultan","domainName":"github"},"branch":"master","displayName":"shayaansultan/ip[master]","outputFolderName":"shayaansultan_ip_master"},{"location":{"location":"https://github.com/ljy0422/ip.git","repoName":"ip","organization":"ljy0422","domainName":"github"},"branch":"master","displayName":"ljy0422/ip[master]","outputFolderName":"ljy0422_ip_master"},{"location":{"location":"https://github.com/JukeBoxK/ip.git","repoName":"ip","organization":"JukeBoxK","domainName":"github"},"branch":"master","displayName":"JukeBoxK/ip[master]","outputFolderName":"JukeBoxK_ip_master"},{"location":{"location":"https://github.com/Howlong11/ip.git","repoName":"ip","organization":"Howlong11","domainName":"github"},"branch":"master","displayName":"Howlong11/ip[master]","outputFolderName":"Howlong11_ip_master"},{"location":{"location":"https://github.com/Hibeom0929/ip.git","repoName":"ip","organization":"Hibeom0929","domainName":"github"},"branch":"master","displayName":"Hibeom0929/ip[master]","outputFolderName":"Hibeom0929_ip_master"},{"location":{"location":"https://github.com/VatsalVitosh/ip.git","repoName":"ip","organization":"VatsalVitosh","domainName":"github"},"branch":"master","displayName":"VatsalVitosh/ip[master]","outputFolderName":"VatsalVitosh_ip_master"},{"location":{"location":"https://github.com/bachletuankhai/ip.git","repoName":"ip","organization":"bachletuankhai","domainName":"github"},"branch":"master","displayName":"bachletuankhai/ip[master]","outputFolderName":"bachletuankhai_ip_master"},{"location":{"location":"https://github.com/RunjiaChen/ip.git","repoName":"ip","organization":"RunjiaChen","domainName":"github"},"branch":"master","displayName":"RunjiaChen/ip[master]","outputFolderName":"RunjiaChen_ip_master"}],"errorSet":[{"repoName":"Ryan-Reno/ip[master]","errorMessage":"Failed to clone from https://github.com/Ryan-Reno/ip.git"},{"repoName":"tcjazwei/ip[master]","errorMessage":"Failed to clone from https://github.com/tcjazwei/ip.git"},{"repoName":"Morninggloryyy/ip[master]","errorMessage":"Failed to clone from https://github.com/Morninggloryyy/ip.git"},{"repoName":"ValenciaLim/ip[master]","errorMessage":"Failed to clone from https://github.com/ValenciaLim/ip.git"},{"repoName":"nusliuyifan/ip[master]","errorMessage":"Failed to clone from https://github.com/nusliuyifan/ip.git"},{"repoName":"The-Dudeski/ip[master]","errorMessage":"Failed to clone from https://github.com/The-Dudeski/ip.git"}],"sinceDate":"2024-01-19","untilDate":"2024-02-07","isSinceDateProvided":true,"isUntilDateProvided":false,"supportedDomainUrlMap":{"NOT_RECOGNIZED":{"BRANCH":"","REPO_URL":"UNSUPPORTED","BASE_URL":"UNSUPPORTED","HISTORY_PATH":"","COMMIT_PATH":"","BLAME_PATH":""},"github":{"BRANCH":"tree/$BRANCH","REPO_URL":"https://github.com/$ORGANIZATION/$REPO_NAME/","BASE_URL":"https://github.com/","HISTORY_PATH":"commits/$BRANCH/$FILE_PATH","COMMIT_PATH":"commit/$COMMIT_HASH","BLAME_PATH":"blame/$BRANCH/$FILE_PATH"}}}