Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 237 for Git (0.12 sec)

  1. src/cmd/go/internal/modfetch/codehost/git.go

    	// The "--is-ancestor" flag was added to "git merge-base" in version 1.8.0, so
    	// this won't work with Git 1.7.1. According to golang.org/issue/28550, cmd/go
    	// already doesn't work with Git 1.7.1, so at least it's not a regression.
    	//
    	// git merge-base --is-ancestor exits with status 0 if rev is an ancestor, or
    	// 1 if not.
    	_, err := Run(ctx, r.dir, "git", "merge-base", "--is-ancestor", "--", tag, rev)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/reuse_git.txt

    ! go mod download -json vcs-test.golang.org/git/hello.git@latest vcs-test.golang.org/git/hello.git/v9@latest vcs-test.golang.org/git/hello.git/sub/v9@latest vcs-test.golang.org/git/tagtests.git@latest vcs-test.golang.org/git/tagtests.git@v0.2.2 vcs-test.golang.org/git/tagtests.git@master
    cp stdout all.json
    
    # clean the module cache, make sure that makes go mod download re-run git fetch, clean again
    go clean -modcache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcs/vcs_test.go

    		{
    			"git.apache.org/package name/path/to/lib",
    			nil,
    		},
    		// Should have ".git" suffix
    		{
    			"git.apache.org/package-name/path/to/lib",
    			nil,
    		},
    		{
    			"gitbapache.org",
    			nil,
    		},
    		{
    			"git.apache.org/package-name.git",
    			&RepoRoot{
    				VCS:  vcsGit,
    				Repo: "https://git.apache.org/package-name.git",
    			},
    		},
    		{
    			"git.apache.org/package-name_2.x.git/path/to/lib",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  4. pkg/volume/git_repo/git_repo_test.go

    			// Calculate the subdirectory clone would create (if any)
    			// git clone -- https://github.com/kubernetes/kubernetes.git target_dir --> target_dir
    			// git clone -- https://github.com/kubernetes/kubernetes.git            --> kubernetes
    			// git clone -- https://github.com/kubernetes/kubernetes.git .          --> .
    			// git clone -- https://github.com/kubernetes/kubernetes.git ./.        --> .
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo_test.go

    	},
    	{
    		vcs:  "git",
    		path: "vcs-test.golang.org/git/v2sub.git",
    		rev:  "v2.0.1-0.20220222205507-80beb17a1603",
    		err:  `module contains a go.mod file, so module path must match major version ("vcs-test.golang.org/git/v2sub.git/v2")`,
    	},
    	{
    		vcs:     "git",
    		path:    "vcs-test.golang.org/git/v2sub.git",
    		rev:     "v2.0.0+incompatible",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            then:
            // Git repo is cloned
            def gitCheckout = checkoutDir(repo.name, commit.id.name, repo.id)
            gitCheckout.file('.git').assertExists()
            // Submodule is cloned
            gitCheckout.file('deeperDep/.git').assertExists()
            gitCheckout.file('deeperDep/foo').text == "bar"
            gitCheckout.file('deeperDep/evenDeeperDep/.git').assertExists()
    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. src/cmd/go/internal/vcs/vcs.go

    	// Git at Apache
    	{
    		pathPrefix: "git.apache.org",
    		regexp:     lazyregexp.New(`^(?P<root>git\.apache\.org/[a-z0-9_.\-]+\.git)(/[\w.\-]+)*$`),
    		vcs:        "git",
    		repo:       "https://{root}",
    	},
    
    	// Git at OpenStack
    	{
    		pathPrefix: "git.openstack.org",
    		regexp:     lazyregexp.New(`^(?P<root>git\.openstack\.org/[\w.\-]+/[\w.\-]+)(\.git)?(/[\w.\-]+)*$`),
    		vcs:        "git",
    		repo:       "https://{root}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    image::ci-systems/github-actions-create-repository.png[Create new GitHub repository]
    
    === Clone the repository locally
    
    [listing.terminal.sample-command]
    ----
    $ git clone git@github.com:<YOUR-GITHUB-USER>/github-actions-gradle-sample.git
    Cloning into 'github-actions-gradle-sample'...
    $ cd github-actions-gradle-sample
    ----
    
    === Initialize the Gradle project and commit to the repository
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    * [git](https://git-scm.com/) and a [GitHub account](https://github.com/join).
    
    Gradle uses pull requests for contributions. Fork [gradle/gradle](https://github.com/gradle/gradle) and clone your fork. Configure your Git username and email with:
    
        git config user.name 'First Last'
        git config user.email ******@****.***
    
    #### Import Gradle into IntelliJ
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        remoteUri = 'https://github.com/gradle/perf-android-large.git'
        // From android-73 branch
        ref = "54eef7cc87e9eb1e89fce0d2de8d12e60c694080"
    }
    
    performanceTest.registerAndroidTestProject("largeAndroidBuild2", RemoteProject) {
        remoteUri = 'https://github.com/gradle/perf-android-large-2.git'
        // Pinned from android-73-kotlin-16 branch
        ref = "a67ceb08a7b4e4a71e3c151a3abd72a9abe5d703"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top