HomeSort by: relevance | last modified time | path
    Searched refs:commits (Results 1 - 11 of 11) sorted by relevancy

  /src/external/gpl3/gcc/dist/contrib/gcc-changelog/
git_repository.py 72 commits = list(repo.iter_commits(revisions))
74 commits = [repo.commit(revisions)]
76 for commit in commits:
git_update_version.py 32 # Skip the following commits, they cannot be correctly processed
107 # We support merge commits but only with 2 parensts
122 commits = parse_git_revisions(args.git_path, '%s..%s'
124 commits = [c for c in commits if c.info.hexsha not in IGNORED_COMMITS]
125 for git_commit in reversed(commits):
  /src/external/gpl3/gcc.old/dist/contrib/gcc-changelog/
git_repository.py 70 commits = list(repo.iter_commits(revisions))
72 commits = [repo.commit(revisions)]
74 for commit in commits:
git_update_version.py 29 # Skip the following commits, they cannot be correctly processed
93 # We support merge commits but only with 2 parensts
108 commits = parse_git_revisions(args.git_path, '%s..%s'
110 commits = [c for c in commits if c.info.hexsha not in IGNORED_COMMITS]
111 for git_commit in reversed(commits):
  /src/external/apache2/llvm/dist/clang/tools/clang-format/
git-clang-format 38 If zero or one commits are given, run clang-format on all lines that differ
42 If two commits are given (requires --diff), run clang-format on all lines in the
129 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
130 if len(commits) > 1:
132 die('--diff is required when two commits are given')
134 if len(commits) > 2:
135 die('at most two commits allowed; %d given' % len(commits))
136 changed_lines = compute_diff_and_extract_lines(commits, files)
159 if len(commits) > 1
    [all...]
  /src/external/gpl3/gcc/dist/.github/
CONTRIBUTING.md 10 to conveniently send Pull Requests commits to GCC's mailing list, the way that the Git
  /src/external/apache2/llvm/dist/llvm/utils/git/
pre-push.py 135 commits = git('rev-list', range).splitlines()
137 commits.reverse()
138 return commits
160 # Update to existing branch, examine new commits
171 # Print the revision about to be pushed commits
177 if not ask_confirm('Are you sure you want to push %d commits?' % len(revs)):
  /src/external/bsd/zstd/dist/tests/
DEPRECATED-test-zstd-speed.py 122 commits = execute('git log -n 10 %s %s' % (fmt, commit))
124 commits = execute('git --no-pager log %s %s..%s' % (fmt, last_commit, commit))
125 return str('Changes in %s since %s:\n' % (branch, last_commit)) + '\n'.join(commits)
  /src/external/gpl2/xcvs/dist/contrib/
cvs_acls.in 56 allow|deny - allow: commits are allowed; deny: prohibited
92 which disallows the commits for that directory.
196 Restricted commits can be sent to a default file:
393 # ----- Except when "ed" commits to the "stable"
489 set exit code allowing commits and exit
491 set exit code prohibiting commits and exit
  /src/usr.bin/make/unit-tests/
cond-func-empty.mk 182 # unnecessary evaluations were fixed in several commits, starting with var.c
  /src/external/mpl/bind/dist/contrib/gitchangelog/
gitchangelog.py 1000 """Completes commits attributes upon request."""
1377 """Reverse chronological list of git repository's commits
1389 ## --topo-order: don't mix commits from separate branches.
1508 for commit in section["commits"]:
1570 for commit in section["commits"]:
1723 :param include_merge: whether to include merge commits in the log or not
1759 die("No commits matching given revlist: %s" % (" ".join(revlist),))
1797 commits = repository.log( variable
1804 for commit in commits:
1844 {"label": k, "commits": sections[k]} for k in section_order if k in section
    [all...]

Completed in 33 milliseconds