- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 316 for git (0.01 sec)
-
.git-blame-ignore-revs
Guillaume Nodet <******@****.***> 1669127925 +0100
Registered: 2025-05-24 08:56 - Last Modified: 2022-11-22 14:38 - 857 bytes - Viewed (0) -
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: 2025-05-28 22:53 - Last Modified: 2024-06-04 18:05 - 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: 2025-05-25 19:28 - Last Modified: 2025-04-02 03:53 - 1.1K bytes - Viewed (0) -
buildscripts/gen-ldflags.go
func commitID() string { // git log --format="%H" -n1 var ( commit []byte err error ) cmdName := "git" cmdArgs := []string{"log", "--format=%H", "-n1"} if commit, err = exec.Command(cmdName, cmdArgs...).Output(); err != nil { fmt.Fprintln(os.Stderr, "Error generating git commit-id: ", err) os.Exit(1) } return strings.TrimSpace(string(commit)) }
Registered: 2025-05-25 19:28 - Last Modified: 2022-06-16 23:10 - 3.3K bytes - Viewed (0) -
.github/PULL_REQUEST_TEMPLATE.md
2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here:
Registered: 2025-05-30 09:05 - Last Modified: 2021-08-01 08:59 - 2.8K 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: 2025-05-28 11:36 - Last Modified: 2024-07-26 10:02 - 2K bytes - Viewed (0) -
common/scripts/report_build_info.sh
# limitations under the License. if BUILD_GIT_REVISION=$(git rev-parse HEAD 2> /dev/null); then if [[ -z "${IGNORE_DIRTY_TREE}" ]] && [[ -n "$(git status --porcelain 2>/dev/null)" ]]; then BUILD_GIT_REVISION=${BUILD_GIT_REVISION}"-dirty" fi else BUILD_GIT_REVISION=unknown fi # Check for local changes tree_status="Clean" if [[ -z "${IGNORE_DIRTY_TREE}" ]] && ! git diff-index --quiet HEAD --; then tree_status="Modified" fi
Registered: 2025-05-28 22:53 - Last Modified: 2023-05-23 17:08 - 1.9K bytes - Viewed (0) -
src/bootstrap.bash
exit 2 fi unset GOROOT src=$(cd .. && pwd) echo "#### Copying to $targ" cp -Rp "$src" "$targ" cd "$targ" echo echo "#### Cleaning $targ" chmod -R +w . rm -f .gitignore if [ -e .git ]; then git clean -f -d fi echo echo "#### Building $targ" echo cd src ./make.bash --no-banner $forceflag gohostos="$(../bin/go env GOHOSTOS)" gohostarch="$(../bin/go env GOHOSTARCH)" goos="$(../bin/go env GOOS)"
Registered: 2025-05-27 11:13 - Last Modified: 2023-01-20 17:52 - 2.3K bytes - Viewed (0) -
common-protos/k8s.io/api/node/v1alpha1/generated.proto
// pod. For more details, see // https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class message RuntimeClass { // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1; // spec represents specification of the RuntimeClass
Registered: 2025-05-28 22:53 - Last Modified: 2024-03-11 18:43 - 5K 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: 2025-05-25 19:28 - Last Modified: 2024-08-05 18:35 - 2.9K bytes - Viewed (0)