Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 751 for Git (0.02 sec)

  1. 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)
  2. src/cmd/go/testdata/script/mod_get_major.txt

    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # golang.org/issue/34383: if a module path ends in a major-version suffix,
    # ensure that 'direct' mode can resolve the package to a module.
    
    go get vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0
    
    go list -m vcs-test.golang.org/git/v3pkg.git/v3
    stdout '^vcs-test.golang.org/git/v3pkg.git/v3 v3.0.0$'
    
    go get vcs-test.golang.org/git/empty-v2-without-v1.git/v2@v2.0.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 616 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/git/issue61415.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
    
    at 2023-11-14T13:00:00-05:00
    
    git init
    
    git add go.mod nested
    git commit -m 'nested: add go.mod'
    git branch -m main
    
    git tag has-nested
    
    at 2023-11-14T13:00:01-05:00
    
    git rm -r nested
    git commit -m 'nested: delete subdirectory'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 928 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/git/modlegacy1-new.txt

    -- new.go --
    package new
    
    import _ "vcs-test.golang.org/git/modlegacy1-new.git/v2/p2"
    -- p1/p1.go --
    package p1
    
    import _ "vcs-test.golang.org/git/modlegacy1-old.git/p2"
    import _ "vcs-test.golang.org/git/modlegacy1-new.git"
    import _ "vcs-test.golang.org/git/modlegacy1-new.git/p2"
    -- p2/p2.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 770 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/v3pkg.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-07-15T14:01:24-04:00
    env GIT_AUTHOR_DATE=2019-07-15T13:59:34-04:00
    git add go.mod v3pkg.go
    git commit -a -m 'all: add go.mod with v3 path'
    git branch -m master
    git tag 'v3.0.0'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 648 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_list_issue61415.txt

    [short] skip 'generates a vcstest git repo'
    [!git] skip
    
    env GOPROXY=direct
    
    # Control case: fetching a nested module at a tag that exists should
    # emit Origin metadata for that tag and commit, and the origin should
    # be reusable for that tag.
    
    go list -json -m --versions -e vcs-test.golang.org/git/issue61415.git/nested@has-nested
    cp stdout has-nested.json
    stdout '"Origin":'
    stdout '"VCS": "git"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/git/v2sub.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 2022-02-22T15:53:33-05:00
    git add v2sub.go v2
    git commit -m 'all: add package v2sub and v2sub/v2'
    git branch -m main
    git tag v2.0.0
    
    at 2022-02-22T15:55:07-05:00
    git add README.txt
    git commit -m 'v2sub: add README.txt'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 773 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    git add v2
    git commit -a -m 'v2'
    git tag v2.3
    git tag v2.0.1
    git branch v2.3.4
    git tag branch-v2.3.4
    
    at 2018-04-17T16:00:19-04:00
    echo 'intermediate'
    cp stdout foo.txt
    git add foo.txt
    git commit -a -m 'intermediate'
    
    at 2018-04-17T16:00:32-04:00
    echo 'another'
    cp stdout another.txt
    git add another.txt
    git commit -a -m 'another'
    git tag v2.0.2
    git tag branch-v2
    
    at 2018-04-17T16:16:52-04:00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/git/commit-after-tag.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-07-15T17:16:47-04:00
    git add go.mod main.go
    git commit -m 'all: add go.mod and main.go'
    git branch -m master
    git tag v1.0.0
    
    at 2019-07-15T17:17:27-04:00
    cp _next/main.go main.go
    git add main.go
    git commit -m 'add init function'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 767 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/go/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>
    <meta name="go-import" content="vcs-test.golang.org/go/missingrepo/missingrepo-git/notmissing git https://vcs-test.golang.org/git/mainonly">
    -- missingrepo-git-ssh/index.html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 832 bytes
    - Viewed (0)
Back to top