Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addFilepattern (0.12 sec)

  1. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

         */
        public RevCommit commit(String message, String... paths) throws GitAPIException {
            AddCommand add = git.add();
            for (String path : paths) {
                add.addFilepattern(path);
            }
            add.call();
            return commit(message);
        }
    
        /**
         * Commits all changes in the working tree. This is approximately {@code git commit -am "message"}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top