Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 316 for Git (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .github/workflows/build-docs.yml

            run: |
              pip install git+https://${{ secrets.FASTAPI_MKDOCS_MATERIAL_INSIDERS }}@github.com/squidfunk/mkdocs-material-insiders.git
              pip install git+https://${{ secrets.FASTAPI_MKDOCS_MATERIAL_INSIDERS }}@github.com/pawamoy-insiders/griffe-typing-deprecated.git
              pip install git+https://${{ secrets.FASTAPI_MKDOCS_MATERIAL_INSIDERS }}@github.com/pawamoy-insiders/mkdocstrings-python.git
          - name: Verify Docs
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    env GO111MODULE=on
    
    # Testing stderr for git ls-remote; turn off proxy.
    [!net:github.com] skip
    [!git] skip
    env GOPROXY=direct
    
    # 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'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. deploy_website.sh

    # https://squidfunk.github.io/mkdocs-material/
    # It requires python3 to run.
    
    set -ex
    
    REPO="git@github.com:square/okhttp.git"
    DIR=temp-clone
    
    # Delete any existing temporary website clone
    rm -rf $DIR
    
    # Clone the current repo into temp folder
    git clone $REPO $DIR
    # Replace `git clone` with these lines to hack on the website locally
    # cp -a . "../okhttp-website"
    # mv "../okhttp-website" "$DIR"
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/DefaultGitVersionControlSpec.java

            return "Git repository at " + getUrl();
        }
    
        @Override
        public String getUniqueId() {
            return "git-repo:" + getUrl().toASCIIString();
        }
    
        @Override
        public String getRepoName() {
            String[] pathParts = url.getPath().split("/");
            String repoPart = pathParts[pathParts.length-1];
            if (repoPart.endsWith(".git")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. .github/workflows/release-branch-cherrypick.yml

          id: cherrypick
          run: |
              git config --global user.name "TensorFlow Release Automation"
              git config --global user.email "******@****.***"
              git fetch origin master
              git cherry-pick ${{ github.event.inputs.git_commit }}
              echo "SHORTSHA=$(git log -1 ${{ github.event.inputs.git_commit }} --format="%h")" >> "$GITHUB_OUTPUT"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pkg/volume/git_repo/git_repo.go

    	}
    
    	if output, err := b.execCommand("git", []string{"checkout", b.revision}, subdir); err != nil {
    		return fmt.Errorf("failed to exec 'git checkout %s': %s: %v", b.revision, output, err)
    	}
    	if output, err := b.execCommand("git", []string{"reset", "--hard"}, subdir); err != nil {
    		return fmt.Errorf("failed to exec 'git reset --hard': %s: %v", output, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. prow/release-commit.sh

    ${DEPENDENCIES:-$(cat <<EOD
      istio:
        localpath: ${ROOT}
      api:
        git: https://github.com/istio/api
        auto: modules
      proxy:
        git: https://github.com/istio/proxy
        auto: deps
      client-go:
        git: https://github.com/istio/client-go
        branch: master
      test-infra:
        git: https://github.com/istio/test-infra
        branch: master
      tools:
        git: https://github.com/istio/tools
        branch: master
      release-builder:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top