Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 912 for Git (0.07 sec)

  1. src/cmd/go/internal/vcweb/git.go

    	if !h.Available() {
    		return nil, ServerNotInstalledError{name: "git"}
    	}
    
    	baseEnv := append(slices.Clip(env),
    		"GIT_PROJECT_ROOT="+dir,
    		"GIT_HTTP_EXPORT_ALL=1",
    	)
    
    	handler := http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		// The Git client sends the requested Git protocol version as a
    		// "Git-Protocol" HTTP request header, which the CGI host then converts
    		// to an environment variable (HTTP_GIT_PROTOCOL).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/util/Git.groovy

     */
    
    package org.gradle.performance.util
    
    import org.gradle.util.internal.DefaultGradleVersion
    
    class Git {
        static final Git INSTANCE = new Git()
        final String commitId
        final String branchName
    
        static Git current() {
            return INSTANCE
        }
    
        private Git() {
            commitId = System.getProperty("gradleBuildCommitId", DefaultGradleVersion.current().gitRevision)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git.go

    	// The "--is-ancestor" flag was added to "git merge-base" in version 1.8.0, so
    	// this won't work with Git 1.7.1. According to golang.org/issue/28550, cmd/go
    	// already doesn't work with Git 1.7.1, so at least it's not a regression.
    	//
    	// git merge-base --is-ancestor exits with status 0 if rev is an ancestor, or
    	// 1 if not.
    	_, err := Run(ctx, r.dir, "git", "merge-base", "--is-ancestor", "--", tag, rev)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    [!GOOS:windows] svn checkout file://$ROOT .
    
    cd git-README-only
    git init
    git config --add core.ignorecase true
    git config --add core.precomposeunicode true
    
    git add README
    at 2017-09-22T11:39:03-04:00
    git commit -a -m 'README'
    git branch -m master
    
    git rev-parse HEAD
    stdout '^7f800d2ac276dd7042ea0e8d7438527d236fd098$'
    
    	# Fake a clone from an origin repo at this commit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    [!GOOS:windows] svn checkout file://$ROOT .
    
    git init
    git config --add core.ignorecase true
    git config --add core.precomposeunicode true
    
    git add README
    at 2017-09-22T11:39:03-04:00
    git commit -a -m 'README'
    git branch -m master
    
    git rev-parse HEAD
    stdout '^7f800d2ac276dd7042ea0e8d7438527d236fd098$'
    
    	# Fake a clone from an origin repo at this commit.
    git remote add origin https://vcs-test.swtch.com/git/README-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/go/test1-svn-git.txt

    -- git-README-only/pkg/index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test1-svn-git/git-README-only git https://vcs-test.golang.org/git/README-only">
    -- index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test1-svn-git svn https://vcs-test.golang.org/svn/test1-svn-git">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/go/test2-svn-git.txt

    -- test2pkg/index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test2-svn-git/test2pkg git https://vcs-test.golang.org/git/README-only">
    -- test2pkg/pkg/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. .git-blame-ignore-revs

    Guillaume Nodet <******@****.***> 1669127925 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 14:38:45 UTC 2022
    - 857 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/git/querytest.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:31:01-04:00
    git add go.mod
    git commit -a -m 'v1'
    git branch -m master
    git tag start
    
    git branch v2
    
    at 2018-07-03T22:33:47-04:00
    echo 'before v0.0.0-pre1'
    cp stdout status
    git add status
    git commit -a -m 'before v0.0.0-pre1'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/reuse_git.txt

    ! go mod download -json vcs-test.golang.org/git/hello.git@latest vcs-test.golang.org/git/hello.git/v9@latest vcs-test.golang.org/git/hello.git/sub/v9@latest vcs-test.golang.org/git/tagtests.git@latest vcs-test.golang.org/git/tagtests.git@v0.2.2 vcs-test.golang.org/git/tagtests.git@master
    cp stdout all.json
    
    # clean the module cache, make sure that makes go mod download re-run git fetch, clean again
    go clean -modcache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top