- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 94 for Git (0.03 sec)
-
manifests/addons/dashboards/jsonnetfile.lock.json
{ "source": { "git": { "remote": "https://github.com/grafana/grafonnet.git", "subdir": "gen/grafonnet-latest" } }, "version": "18eb4e529c60ec20ab243e2da3bcb52b2fd0d223", "sum": "eyuJ0jOXeA4MrobbNgU4/v5a7ASDHslHZ0eS6hDdWoI=" }, { "source": { "git": { "remote": "https://github.com/grafana/grafonnet.git",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jun 04 18:05:06 UTC 2024 - 1.2K bytes - Viewed (0) -
docker-buildx.sh
#!/bin/bash sudo sysctl net.ipv6.conf.all.disable_ipv6=0 remote=$(git remote get-url upstream) if test "$remote" != "git@github.com:minio/minio.git"; then echo "Script requires that the 'upstream' remote is set to git@github.com:minio/minio.git" exit 1 fi git remote update upstream && git checkout master && git rebase upstream/master release=$(git describe --abbrev=0 --tags) docker buildx build --push --no-cache \
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 14:06:17 UTC 2024 - 1.2K bytes - Viewed (0) -
build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt
val rootProjectBuildDir: DirectoryProperty } @get:Inject abstract val providers: ProviderFactory val gitCommitId = git("rev-parse", "HEAD") val gitBranch = git("rev-parse", "--abbrev-ref", "HEAD") @Suppress("UnstableApiUsage") private fun git(vararg args: String): Provider<String> { val projectDir = parameters.rootProjectDir.asFile.get() val execOutput = providers.exec {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 10:02:49 UTC 2024 - 2K bytes - Viewed (0) -
CONTRIBUTING.md
```sh git clone https://github.com/minio/minio cd minio go install -v ls $(go env GOPATH)/bin/minio ``` ### Set up git remote as ``upstream`` ```sh $ cd minio $ git remote add upstream https://github.com/minio/minio $ git fetch upstream $ git merge upstream/master ... ``` ### Create your feature branch
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 05 18:35:53 UTC 2024 - 2.9K bytes - Viewed (0) -
requirements-docs-insiders.txt
git+https://${TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git@9.5.30-insiders-4.53.11 git+https://${TOKEN}@github.com/pawamoy-insiders/griffe-typing-deprecated.git
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 246 bytes - Viewed (0) -
.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: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 3.1K bytes - Viewed (0) -
common/scripts/check_clean_repo.sh
echo "You can also try applying the patch file from the build artifacts: git apply <(curl -sL \"${patchFile}\") " } if [[ -n $(git status --porcelain) ]]; then git status git diff echo "ERROR: Some files need to be updated, please run 'make gen' and include any changed files in your PR" write_patch_file exit 1
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 27 16:44:16 UTC 2024 - 1.7K bytes - Viewed (0) -
lib/time/update.bash
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:25:08 UTC 2024 - 1.8K bytes - Viewed (0) -
buildscripts/checkdeps.sh
exit 1 fi } assert_check_deps() { # support unusual Git versions such as: 2.7.4 (Apple Git-66) installed_git_version=$(git version | perl -ne '$_ =~ m/git version (.*?)( |$)/; print "$1\n";') if ! check_minimum_version "${GIT_VERSION}" "${installed_git_version}"; then echo "Git version '${installed_git_version}' is not supported. Minimum supported version: ${GIT_VERSION}" exit 1 fi }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 3.4K bytes - Viewed (0) -
CONTRIBUTING.md
* [git](https://git-scm.com/) and a [GitHub account](https://github.com/join). Gradle uses pull requests for contributions. Fork [gradle/gradle](https://github.com/gradle/gradle) and clone your fork. Configure your Git username and email with: git config user.name 'First Last' git config user.email ******@****.*** #### Import Gradle into IntelliJ
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Nov 05 15:15:33 UTC 2024 - 15.6K bytes - Viewed (0)