Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 750 for Git (0.07 sec)

  1. src/cmd/go/testdata/script/mod_download_issue51114.txt

    [!net:github.com] skip
    [!git] skip
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    ! go mod download
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query_test.go

    	{path: queryRepo, query: "upgrade", current: "v1.99.99", err: `vcs-test.golang.org/git/querytest.git@v1.99.99: invalid version: unknown revision v1.99.99`},
    	{path: queryRepo, query: "patch", current: "", err: `can't query version "patch" of module vcs-test.golang.org/git/querytest.git: no existing version is required`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/version_buildvcs_nested.txt

    go mod init example.com/root/hgsub
    go build
    cd ..
    
    # It's an error to build a package from a nested Git repository if the package
    # is in a separate repository from the current directory or from the module
    # root directory.
    mkdir gitsub
    cd gitsub
    exec git init
    exec git config user.name 'J.R.Gopher'
    exec git config user.email '******@****.***'
    cp ../../main.go main.go
    ! go build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/govcs.txt

    # git is OK by default
    env GOVCS=
    env GONOSUMDB='*'
    [net:rsc.io] [git] [!short] go get rsc.io/sampler
    
    # hg is OK by default
    env GOVCS=
    env GONOSUMDB='*'
    [exec:hg] [!short] go get vcs-test.golang.org/go/custom-hg-hello
    
    # git can be disallowed
    env GOVCS=public:hg
    ! go get rsc.io/nonexist.git/hello
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. hack/lib/version.sh

    # following variables:
    #
    #    KUBE_GIT_COMMIT - The git commit id corresponding to this
    #          source code.
    #    KUBE_GIT_TREE_STATE - "clean" indicates no changes since the git commit id
    #        "dirty" indicates source code changes after the git commit id
    #        "archive" indicates the tree was produced by 'git archive'
    #    KUBE_GIT_VERSION - "vX.Y" used to indicate the last release version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

        }
    
        private
        fun tryGetUpstream(): String? = project.execAndGetStdout("git", "remote", "-v")
            .lines()
            .find { it.contains("git@github.com:gradle/gradle.git") || it.contains("https://github.com/gradle/gradle.git") }
            .let {
                // origin	https://github.com/gradle/gradle.git (fetch)
                val str = it?.replace(Regex("\\s+"), " ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/DefaultGitVersionControlSpecSpec.groovy

        }
    
        def 'handles urls which do end in .git'() {
            given:
            spec.url = 'https://github.com/gradle/gradle-checksum.git'
    
            expect:
            spec.repoName == 'gradle-checksum'
            spec.uniqueId == 'git-repo:https://github.com/gradle/gradle-checksum.git'
            spec.displayName == 'Git repository at https://github.com/gradle/gradle-checksum.git'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_missing_repo.txt

    # tags for prefixes of the module path.
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/go/missingrepo/missingrepo-git@latest
    stderr 'vcs-test.golang.org/go/missingrepo/missingrepo-git: git ls-remote .*: exit status .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 534 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    [short] skip
    [!git] skip
    
    cd sub
    exec git init .
    exec git config user.name 'Nameless Gopher'
    exec git config user.email '******@****.***'
    exec git add sub.go
    exec git commit -m 'initial state'
    cd ..
    
    exec git init
    exec git config user.name 'Nameless Gopher'
    exec git config user.email '******@****.***'
    exec git submodule add ./sub
    exec git add go.mod example.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. docs/releasing.md

          `find . -name "README.md"`
        ```
    
    4. Tag the release and push to GitHub.
    
        ```
        git commit -am "Prepare for release $RELEASE_VERSION."
        git tag -a parent-$RELEASE_VERSION -m "Version $RELEASE_VERSION"
        git push && git push --tags
        ```
    
    5. Wait for [GitHub Actions][github_actions] to start the publish job.
    
    6. Prepare for ongoing development and push to GitHub.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top