Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 411 for COMMIT (0.09 sec)

  1. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    git add pkg/pkg.go
    at 2017-09-22T11:41:28-04:00
    git commit -a -m 'add pkg'
    
    git log --oneline --decorate=short
    cmp stdout ../.git-log
    
    cd ..
    svn add git-README-only
    svn commit -m 'add modified git-README-only'
    svn propset svn:author rsc --revprop -r1
    svn propset svn:date 2017-09-22T15:41:54.145716Z --revprop -r1
    
    svn add pkg.go
    svn commit -m 'use git-README-only/pkg'
    svn propset svn:author rsc --revprop -r2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

      4. Please squash all commits for a change into a single commit (this can be
         done using `git rebase -i`). Do your best to have a
         [well-formed commit message][] for the change.
    
    [Java style guide]: https://google.github.io/styleguide/javaguide.html
    [well-formed commit message]: https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
    
    #### Merging pull requests ####
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    - To run `make verifiers`
    - To squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
    - To run `make test` and `make build` completes.
    
    ### Commit changes
    
    After verification, commit your changes. This is a [great post](https://chris.beams.io/posts/git-commit/) on how to write useful commit messages
    
    ```
    git commit -am 'Add some feature'
    ```
    
    ### Push to the branch
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/version_buildvcs_bzr.txt

    cd ..
    
    # Revision and commit time are tagged for repositories with commits.
    exec bzr add a README
    exec bzr commit -m 'initial commit'
    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=bzr$'
    stdout '^\tbuild\tvcs.revision='
    stdout '^\tbuild\tvcs.time='
    stdout '^\tbuild\tvcs.modified=false$'
    rm $GOBIN/a$GOEXE
    
    # Building an earlier commit should still build clean.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 03:44:02 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  5. .github/dependabot.yml

    version: 2
    updates:
      # GitHub Actions
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "daily"
        commit-message:
          prefix: ⬆
      # Python
      - package-ecosystem: "pip"
        directory: "/"
        schedule:
          interval: "monthly"
        commit-message:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:41:55 UTC 2024
    - 311 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/git/modlegacy1-new.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2018-04-25T11:00:57-04:00
    git add go.mod new.go p1 p2
    git commit -m 'initial commit'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    36cc50a (HEAD -> master) initial commit
    -- go.mod --
    module "vcs-test.golang.org/git/modlegacy1-new.git/v2"
    -- new.go --
    package new
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 770 bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4-restore.golden

    * nat
    -A PREROUTING -f foo -b bar
    COMMIT
    * table
    -N chain
    -A chain -f foo -b bar
    -I chain 2 -f foo -b bar
    -A chain -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 135 bytes
    - Viewed (0)
  8. bin/update_deps.sh

    go get -u "istio.io/client-go@${UPDATE_BRANCH}"
    go mod tidy
    
    sed -i "s/^BUILDER_SHA=.*\$/BUILDER_SHA=$(getSha release-builder)/" prow/release-commit.sh
    chmod +x prow/release-commit.sh
    sed -i '/PROXY_REPO_SHA/,/lastStableSHA/ { s/"lastStableSHA":.*/"lastStableSHA": "'"$(getSha proxy)"'"/  }; /ZTUNNEL_REPO_SHA/,/lastStableSHA/ { s/"lastStableSHA":.*/"lastStableSHA": "'"$(getSha ztunnel)"'"/  }' istio.deps
    
    # shellcheck disable=SC1001
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/git/semver-branch.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2022-02-02T14:15:21-05:00
    git add pkg go.mod
    git commit -a -m 'pkg: add empty package'
    git branch -m main
    git tag 'v0.1.0'
    
    at 2022-02-02T14:19:44-05:00
    git branch 'v1.0.0'
    git branch 'v2.0.0'
    git checkout 'v1.0.0'
    cp v1/pkg/pkg.go pkg/pkg.go
    git commit -a -m 'pkg: start developing toward v1.0.0'
    
    at 2022-02-03T10:53:13-05:00
    git branch 'v3.0.0-devel'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyIntegrationTest.groovy

                        apply plugin: 'java'
                        group = 'org.test'
                    }
                """
                file("src/main/java/Dep.java") << "public class Dep {}"
            }
            commit = repo.commit('initial')
        }
    
        @ToBeFixedForConfigurationCache(because = "source dependencies")
        def "can define source repositories in root of composite build when child build has classpath dependencies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top