Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 589 for Git (0.09 sec)

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

            server.expect(server.post(backingRepo.getName() + "/git-upload-pack", new ErroringAction<HttpExchange>() {
                @Override
                protected void doExecute(HttpExchange httpExchange) throws Exception {
                    httpExchange.getResponseHeaders().add("content-type", "application/x-git-upload-pack-result");
                    httpExchange.sendResponseHeaders(200, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/code_check_changed_files.bats

        # Without this, git errors if /tf/tensorflow directory owner is different
        git config --global --add safe.directory /tf/tensorflow
        # Note that you could generate a list of all the affected targets with e.g.:
        # bazel query $(paste -sd "+" $BATS_FILE_TMPDIR/changed_files) --keep_going
        # Only shows Added, Changed, Modified, Renamed, and Type-changed files
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/transform/jar/after.pom

        </license>
      </licenses>
      <scm>
        <connection>scm:git:******@****.***:helpermethod/zip-forge.git</connection>
        <developerConnection>scm:git:******@****.***:helpermethod/zip-forge.git</developerConnection>
        <url>git@github.com:helpermethod/zip-forge.git</url>
      </scm>
      <dependencies>
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. hack/lib/verify-generated.sh

        _tmpdir="$(kube::realpath "$(mktemp -d -t "verify-generated-$(basename "$1").XXXXXX")")"
        git worktree add -f -q "${_tmpdir}" HEAD
        kube::util::trap_add "git worktree remove -f ${_tmpdir}" EXIT
        cd "${_tmpdir}"
    
        # Update generated files.
        "$@"
    
        # Test for diffs
        diffs=$(git status --porcelain | wc -l)
        if [[ ${diffs} -gt 0 ]]; then
          if [[ -n "${failure_header}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def target = tmpDir.file('versionDir')
            repoSpec.url = 'ssh://git@notarepo.invalid:12345/TestGradleLibrary.git'
    
            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            GradleException e = thrown()
            e.message.contains('Could not clone from ssh://git@notarepo.invalid:12345/TestGradleLibrary.git in')
            e.cause != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. lib/time/update.bash

    commitmsg="lib/time: update to $CODE/$DATA
    
    Commit generated by update.bash.
    
    For #22487.
    "
    
    if [ "$1" = "-commit" ]; then
    	echo "Creating commit. Run 'git reset HEAD^' to undo commit."
    	echo
    	git commit -m "$commitmsg" $files
    	echo
    	git log -n1 --stat
    	echo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top