Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for commits (0.31 sec)

  1. .github/workflows/CheckBadMerge.groovy

        ]
    
        static void main(String[] commits) {
            println("Commits to check: ${Arrays.toString(commits)}")
            try {
                commits.each { checkCommit(it) }
            } finally {
                THREAD_POOL.shutdown()
            }
        }
    
        static void checkCommit(String commit) {
            List<String> parentCommits = parentCommitsOf(commit)
            if (parentCommits.size() != 2) {
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 19 10:35:44 GMT 2023
    - 6.5K bytes
    - Viewed (0)
  2. .github/workflows/check-bad-merge.yml

            run: sudo apt-get install groovy
          - name: List PR commits
            run: |
              git log --pretty=format:"%H" ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} > pr_commits.txt
          - name: Check PR commits
            id: run_check
            run: |
              groovy .github/workflows/CheckBadMerge.groovy $(<pr_commits.txt) > output.txt 2>&1
          - name: Read output file
            id: read_output
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jan 30 18:26:59 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  3. .asf.yaml

        - build-management
        - apache-maven
        - maven
        - hacktoberfest
      enabled_merge_buttons:
        squash: true
        merge: false
        rebase: true
      autolink_jira:
        - MNG
    notifications:
      commits: commits@maven.apache.org
      issues: ******@****.***
      pullrequests: ******@****.***
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon May 15 13:24:09 GMT 2023
    - 485 bytes
    - Viewed (0)
  4. maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
        </mailingList>
        <mailingList>
          <name>Maven Commits List</name>
          <subscribe>commits******@****.***</subscribe>
          <unsubscribe>commits******@****.***</unsubscribe>
          <post>commits@maven.apache.org</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
        </mailingList>
        <mailingList>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Oct 27 10:08:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2.pom

        </mailingList>
        <mailingList>
          <name>Maven Commits List</name>
          <subscribe>wagon-commits******@****.***</subscribe>
          <unsubscribe>wagon-commits******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-commits/</archive>
        </mailingList>
      </mailingLists>
      <developers>
        <developer>
          <id>michal</id>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 27 10:08:56 GMT 2020
    - 5.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2.pom

        </mailingList>
        <mailingList>
          <name>Maven Commits List</name>
          <subscribe>wagon-commits******@****.***</subscribe>
          <unsubscribe>wagon-commits******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-commits/</archive>
        </mailingList>
      </mailingLists>
      <developers>
        <developer>
          <id>michal</id>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 5.7K bytes
    - Viewed (0)
  7. .github/PULL_REQUEST_TEMPLATE.md

    ### Contributor Checklist
    - [ ] [Review Contribution Guidelines](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    - [ ] Make sure that all commits are [signed off](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) to indicate that you agree to the terms of [Developer Certificate of Origin](https://developercertificate.org/).
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 13 22:36:19 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

        /**
         * Whether the <a href="https://www.jetbrains.com/help/teamcity/configuring-vcs-triggers.html">VCS trigger</a>
         * should be enabled, i.e. when new commits are pushed to this branch, should a ReadyForNightly job
         * be triggered automatically?
         *
         * Currently, we only enable VCS trigger for `master`/`release`/`releaseNx` branches.
         */
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  9. code_of_conduct.md

    response to any instances of unacceptable behavior, in compliance with the
    licensing terms applying to the Project developments.
    
    Project maintainers have the right and responsibility to remove, edit, or
    reject comments, commits, code, wiki edits, issues, and other contributions
    that are not aligned to this Code of Conduct, or to ban temporarily or
    permanently any contributor for other behaviors that they deem inappropriate,
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Jan 20 18:38:58 GMT 2020
    - 3.5K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    - To run `make verifiers`
    - To squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
    - To run `make test` and `make build` completes.
    
    ### Commit changes
    
    After verification, commit your changes. This is a [great post](https://chris.beams.io/posts/git-commit/) on how to write useful commit messages
    
    ```
    git commit -am 'Add some feature'
    ```
    
    ### Push to the branch
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 2.8K bytes
    - Viewed (0)
Back to top