Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 751 for Git (0.04 sec)

  1. src/cmd/go/testdata/vcstest/git/insecurerepo.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 2019-04-03T13:30:35-04:00
    git add go.mod
    git commit -m 'all: initialize module'
    git branch -m master
    
    at 2019-09-04T14:39:48-04:00
    git add main.go
    git commit -m 'main: add Go source file'
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 641 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_replace_gopkgin.txt

    cd ../4-to-0
    go list -m gopkg.in/src-d/go-git.v4
    
    cd ../4-to-1
    go list -m gopkg.in/src-d/go-git.v4
    
    cd ../4-to-incompatible
    go list -m gopkg.in/src-d/go-git.v4
    
    # A mismatched gopkg.in path should not be able to replace a different major version.
    cd ../3-to-gomod-4
    ! go list -m gopkg.in/src-d/go-git.v3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    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 v2.0.0
    git tag mytag
    
    git branch v1
    git branch v2
    git checkout v2
    
    # 2
    at 2018-02-19T18:14:23-05:00
    mkdir v2
    echo 'module "github.com/rsc/vgotest1/v2" // root go.mod'
    cp stdout go.mod
    git add go.mod
    git commit -m 'go.mod v2'
    git tag v2.0.1
    
    # 3
    at 2018-02-19T18:15:11-05:00
    mkdir submod/pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_git_missing_tree.txt

    exec git commit -m 'initial commit'
    
    env GIT_COMMITTER_DATE=2024-01-30T10:53:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:53:00+08:00
    exec git add extra.go
    exec git commit -m 'add extra.go'
    
    # Assume the tree object from initial commit is not available (e.g. partial clone)
    exec git log --pretty=%T
    cmp stdout $WORK/.git-trees
    
    rm .git/objects/66/400c89b45cc96da36d232844dbf9ea5daa6bcf
    
    # Build the module, which should succeed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/emptytest.txt

    handle git
    
    env GIT_AUTHOR_NAME='Russ Cox'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2018-07-03T22:35:49-04:00
    git add go.mod
    git commit -m 'initial'
    git branch -m master
    
    git log --oneline
    cmp stdout .git-log
    
    -- .git-log --
    7bb9146 initial
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 392 bytes
    - Viewed (0)
  6. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

            } finally {
                if (git != null) {
                    git.close();
                }
            }
        }
    
        private static void resetRepo(File workingDir, GitVersionControlSpec gitSpec, VersionRef ref) {
            Git git = null;
            try {
                git = Git.open(workingDir);
                git.reset().setMode(ResetCommand.ResetType.HARD).setRef(ref.getCanonicalId()).call();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/vcstest/git/mainonly.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 2019-09-05T14:07:43-04:00
    git add main.go
    git commit -a -m 'add main.go'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    8a27e8b (HEAD -> master) add main.go
    -- main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 433 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/git/missingrepo.txt

    handle dir
    
    -- missingrepo-git/index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/missingrepo/missingrepo-git git https://vcs-test.golang.org/git/missingrepo">
    -- missingrepo-git/notmissing/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 409 bytes
    - Viewed (0)
Back to top