Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for updateRemote (0.46 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GitWrapper.java

            return stdout.toString(StandardCharsets.UTF_8);
        }
    
        /**
         * Updates the git repository from the specified remote
         * @param remote the remote to use to update
         */
        public void updateRemote(String remote) {
            runCommand("git", "fetch", Objects.requireNonNull(remote));
        }
    
        /**
         * Updates the git repository's tags from the specified remote
         * @param remote the remote to use to update
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GenerateReleaseNotesTask.java

                    )
                );
    
            LOGGER.info("Updating remote [{}]", upstream);
            // Now update the remote, and make sure we update the tags too
            gitWrapper.updateRemote(upstream);
    
            LOGGER.info("Updating tags from [{}]", upstream);
            gitWrapper.updateTags(upstream);
        }
    
        /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 12.9K bytes
    - Click Count (0)
Back to Top