Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 589 for Git (0.02 sec)

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

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    exec git init
    
    env GIT_COMMITTER_DATE=2022-07-19T11:07:00-04:00
    env GIT_AUTHOR_DATE=2022-07-19T11:07:00-04:00
    exec git add go.mod issue53955.go
    exec git commit -m 'initial commit'
    exec git branch -m main
    exec git tag v1.0.9
    
    env GIT_COMMITTER_DATE=2022-07-19T11:07:01-04:00
    env GIT_AUTHOR_DATE=2022-07-19T11:07:01-04:00
    exec git add extra.go
    exec git commit -m 'next commit'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_insecure_issue63845.txt

    env GOPRIVATE=golang.org
    env CURLOPT_TIMEOUT_MS=100
    env GIT_SSH_COMMAND=false
    
    ! go get -x golang.org/nonexist.git@latest
    stderr '^git ls-remote https://golang.org/nonexist$'
    stderr '^git ls-remote git\+ssh://golang.org/nonexist'
    stderr '^git ls-remote ssh://golang.org/nonexist$'
    ! stderr 'git://'
    stderr '^go: golang.org/nonexist.git@latest: no secure protocol found for repository$'
    
    -- go.mod --
    module example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 21:10:03 UTC 2023
    - 908 bytes
    - Viewed (0)
  3. manifests/addons/dashboards/jsonnetfile.lock.json

        {
          "source": {
            "git": {
              "remote": "https://github.com/grafana/grafonnet.git",
              "subdir": "gen/grafonnet-latest"
            }
          },
          "version": "18eb4e529c60ec20ab243e2da3bcb52b2fd0d223",
          "sum": "eyuJ0jOXeA4MrobbNgU4/v5a7ASDHslHZ0eS6hDdWoI="
        },
        {
          "source": {
            "git": {
              "remote": "https://github.com/grafana/grafonnet.git",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/GitClone.java

    import java.io.IOException;
    
    // tag::git-clone[]
    @UntrackedTask(because = "Git tracks the state") // <1>
    public abstract class GitClone extends DefaultTask {
    
        @Input
        public abstract Property<String> getRemoteUri();
    
        @Input
        public abstract Property<String> getCommitId();
    
        @OutputDirectory
        public abstract DirectoryProperty getDestinationDir();
    // end::git-clone[]
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

        private final File parentDirectory;
        private Git git;
    
        public GitFileRepository(String repoName, File parentDirectory) {
            this.repoName = repoName;
            this.parentDirectory = parentDirectory;
        }
    
        public GitFileRepository(File parentDirectory) {
            this("repo", parentDirectory);
        }
    
        /**
         * Returns the underlying Git object from JGit.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_buildvcs_git.txt

    cd ..
    env PATH=$oldpath
    rm .git
    
    # If there is an empty repository in a parent directory, only "uncommitted" is tagged.
    exec git init
    exec git config user.email ******@****.***
    exec git config user.name 'J.R. Gopher'
    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=git$'
    stdout '^\tbuild\tvcs.modified=true$'
    ! stdout vcs.revision
    ! stdout vcs.time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. 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)
  8. docker-buildx.sh

    #!/bin/bash
    
    sudo sysctl net.ipv6.conf.all.disable_ipv6=0
    
    remote=$(git remote get-url upstream)
    if test "$remote" != "git@github.com:minio/minio.git"; then
    	echo "Script requires that the 'upstream' remote is set to git@github.com:minio/minio.git"
    	exit 1
    fi
    
    git remote update upstream && git checkout master && git rebase upstream/master
    
    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_issue47650.txt

    # Explicitly requesting that same version should succeed, fetching additional
    # history for the requested commit as needed in order to validate the
    # pseudo-version base.
    go clean -modcache
    cp go.mod.orig go.mod
    go get -x vcs-test.golang.org/git/issue47650.git/cmd/issue47650@v0.1.1-0.20210811175200-21535ef346c3
    stderr '^go: added vcs-test.golang.org/git/issue47650.git v0.1.1-0.20210811175200-21535ef346c3$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/git/issue47650.txt

    handle git
    
    env GIT_AUTHOR_NAME='Bryan C. Mills'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2021-08-11T13:52:00-04:00
    git add cmd
    git commit -m 'add cmd/issue47650'
    git branch -m main
    git tag v0.1.0
    
    git add go.mod
    git commit -m 'add go.mod'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 16:13:43 UTC 2023
    - 845 bytes
    - Viewed (0)
Back to top