Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for Checkout (0.24 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

                    }
                }
            """
            repoB.createBranch('release')
            repoB.checkout('release')
            repoB.commit('version 1.2')
            repoB.createLightWeightTag('1.2')
            repoC.createBranch('release')
            repoC.checkout('release')
            repoC.commit('version 1.2')
            repoC.createLightWeightTag('1.2')
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                            message = "second commit"
                        }
                    }
                }
    
                task checkout {
                    dependsOn tag
                    doLast {
                        assert sourceFile.text == 'goodbye world'
                        grgit.checkout {
                            branch = 'previous'
                        }
                        assert sourceFile.text == 'hello world'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. .github/workflows/check-bad-merge.yml

         - opened
         - synchronize
    
    permissions: {}
    
    jobs:
      check_pr_commits:
        permissions:
          contents: read
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout code
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
          - name: Set up JDK 11
            uses: actions/setup-java@v4
            with:
              distribution: 'temurin'
              java-version: '11'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/git/tagtests.txt

    git add go.mod tagtests.go
    git commit -m 'create module tagtests'
    git branch -m master
    git branch b
    
    git add v0.2.1
    git commit -m 'v0.2.1'
    git tag 'v0.2.1'
    
    git checkout b
    git add 'v0.2.2'
    git commit -m 'v0.2.2'
    git tag 'v0.2.2'
    
    git checkout master
    git merge b -m 'merge'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    59356c8cd18c5fe9a598167d98a6843e52d57952 refs/heads/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 913 bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
          # Checkout must run before the caching key is computed using the `hashFiles` method
    
        - name: Cache Gradle Modules
          uses: actions/cache@v4
          with:
            path: |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/git/vgotest1.txt

    git add LICENSE README.md
    git commit -m 'initial commit'
    git branch -m master
    
    git checkout --detach HEAD
    
    at 2018-02-19T18:10:06-05:00
    mkdir pkg
    echo 'package p // pkg/p.go'
    cp stdout pkg/p.go
    git add pkg/p.go
    git commit -m 'add pkg/p.go'
    git tag v0.0.0
    git tag v1.0.0
    git tag mytag
    
    git checkout --detach HEAD
    
    at 2018-02-19T18:14:23-05:00
    mkdir v2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

     *
     * It is effectively the root dir of a build.
     * That is, two builds with the same root dir share the same workspace.
     *
     * In practice, this generally maps to what users would think of as “checkout” of a project.
     * Builds of the same checkout over time will share the same workspace ID.
     *
     * This ID is persisted in the root build's project cache dir.
     * If this cache directory is destroyed, a new ID will be issued.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/GitClone.java

                }
                getExecOperations().exec(spec -> spec.commandLine("git", "clone", "--no-checkout", remoteUri, destinationDir.getAbsolutePath()));
            }
            getExecOperations().exec(spec -> {
                spec.commandLine("git", "checkout", getCommitId().get());
                spec.setWorkingDir(destinationDir);
            });
            getExecOperations().exec(spec -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. .github/workflows/typos.yml

    ---
    name: Spelling
    on: [pull_request]
    
    jobs:
      run:
        name: Spell Check with Typos
        runs-on: ubuntu-latest
        steps:
        - name: Checkout Actions Repository
          uses: actions/checkout@v4
    
        - name: Check spelling of repo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 00:36:28 UTC 2024
    - 266 bytes
    - Viewed (0)
  10. .github/workflows/ci.yml

          - master
    
    permissions:
      contents: read
    
    jobs:
      test:
        permissions:
          actions: write  # for styfle/cancel-workflow-action to cancel/stop running workflows
          contents: read  # for actions/checkout to fetch code
        name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }} on ${{ matrix.os }}"
        strategy:
          matrix:
            os: [ ubuntu-latest ]
            java: [ 8, 11, 17, 21 ]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top