Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for parentCommitsOf (0.05 seconds)

  1. .teamcity/scripts/CheckBadMerge.java

                    .collect(Collectors.toList());
            }
        }
    
        private static void checkCommit(String commit) throws IOException, InterruptedException, ExecutionException {
            List<String> parentCommits = parentCommitsOf(commit);
            if (parentCommits.size() != 2) {
                System.out.println(commit + " is not a merge commit we're looking for. Parents: " + parentCommits);
                return;
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
Back to Top