Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 298 for COMMIT (0.12 sec)

  1. .pre-commit-config.yaml

        rev: v0.2.0
        hooks:
        -   id: ruff
            args:
            - --fix
        -   id: ruff-format
    ci:
        autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 737 bytes
    - Viewed (0)
  2. prow/release-commit.sh

    John Howard <******@****.***> 1718218648 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. .github/workflows/CheckBadMerge.groovy

            }
        }
    
        static void checkCommit(String commit) {
            List<String> parentCommits = parentCommitsOf(commit)
            if (parentCommits.size() != 2) {
                println("$commit is not a merge commit we're looking for. Parents: $parentCommits")
                return
            }
    
            // The correct state we are looking for is:
            // 1. It's a merge commit.
            // 2. One of its parent commits is from master only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 10:35:44 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

            singleProjectBuild("greeter") {
                buildFile << """
                    apply plugin: 'swift-library'
                """
                fixture.library.writeToProject(it)
            }
            def commit = repo.commit('initial commit')
    
            and:
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:greeter") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestPageGeneratorTest.groovy

    class TestPageGeneratorTest extends Specification {
    
        def "transforms a single commit id to a url"() {
            when:
            def urls = new TestPageGenerator().createGitHubLinks(['123456'])
    
            then:
            urls[0].url == 'https://github.com/gradle/gradle/commit/123456'
        }
    
        def "transforms two commit ids to urls"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            evenDeeperRepo.file('foo').text = "baz"
            evenDeeperRepo.commit('initial commit', "foo")
            deeperRepo.file('foo').text = "bar"
            deeperRepo.commit("initial commit", "foo")
            // Add submodule to repo
            deeperRepo.addSubmodule(evenDeeperRepo)
            repo.addSubmodule(deeperRepo)
            def commit = repo.commit('initial commit')
    
            settingsFile << """
                sourceControl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  7. lib/time/update.bash

    	echo No updates needed.
    	exit 0
    fi
    
    echo Updated for $CODE/$DATA: $files
    
    commitmsg="lib/time: update to $CODE/$DATA
    
    Commit generated by update.bash.
    
    For #22487.
    "
    
    if [ "$1" = "-commit" ]; then
    	echo "Creating commit. Run 'git reset HEAD^' to undo commit."
    	echo
    	git commit -m "$commitmsg" $files
    	echo
    	git log -n1 --stat
    	echo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
            repoHead = GitVersionRef.from(repo.head)
            repoSpec = new DefaultGitVersionControlSpec()
            repoSpec.url = repo.url
    
            submoduleRepo.workTree.file("foo.txt") << "hello from submodule"
            submoduleRepo.commit("initial commit")
    
            submoduleRepo2.workTree.file("bar.txt") << "hello from another submodule"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_git_missing_tree.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    # Create 2 commit
    env GIT_COMMITTER_DATE=2024-01-30T10:52:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:52:00+08:00
    
    cd $WORK/repo
    exec git init
    exec git add go.mod main.go
    exec git commit -m 'initial commit'
    
    env GIT_COMMITTER_DATE=2024-01-30T10:53:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:53:00+08:00
    exec git add extra.go
    exec git commit -m 'add extra.go'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                task commit {
                    doLast {
                        sourceFile.text = "hello world"
                        grgit.add(patterns: [ 'sourceFile' ])
                        grgit.commit {
                            message = "first commit"
                        }
                    }
                }
    
                task tag {
                    dependsOn commit
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top