Home
last modified time | relevance | path

Searched full:commit (Results 1 – 25 of 820) sorted by relevance

12345678910>>...33

/freebsd/
H A DMAINTAINERS31 or makes a commit to the specified subtree.
36 aio(4) asomers Pre-commit review requested.
37 ath(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org
38 contrib/atf ngie,#test Pre-commit review requested.
39 contrib/googletest ngie,#test Pre-commit review requested.
40 sbin/ipf cy Pre-commit review requested.
41 contrib/libcxxrt dim,emaste Pre-commit review preferred.
42 contrib/llvm-project/compiler-rt dim Pre-commit review preferred.
43 contrib/llvm-project/libcxx dim Pre-commit review preferred.
44 contrib/llvm-project/libunwind dim,emaste,jhb Pre-commit review preferred.
[all …]
/freebsd/crypto/openssh/
H A DChangeLog1 commit 449d25b4f8b8d3bb55a865ebcbec17b39b37c208
7 commit 0227fe4606ebf86b3f6f9b80af12e171eaa58416
13 commit 0210c7cc942ee54bd6a647d5732df9786c4b08d0
19 OpenBSD-Commit-ID: ce7b0749e5139c70410ee92a13d368d7d34262b5
21 commit 5d04ca6af739b82fd30d84d2783ca802ebfa1192
42 OpenBSD-Commit-ID: ca0acdd64eea435d6f89534538a9eb404a5629d3
44 commit e8bdfb151a356d0171fea4194dd205fbb252be23
56 OpenBSD-Commit-ID: faaa6ad72e7d69d41fa8b197b606265b7d9bc73f
58 commit d43ba60c91cb323ca921049b7d43b1908c318454
68 OpenBSD-Commit-ID: c40bd35cc2428fcaccad7a141703c28baa6da01e
[all …]
/freebsd/tools/tools/git/
H A Dgit-mfc30 def commit_summary(commit): argument
31 return f'{commit.hexsha} ("{commit.summary}")'
34 def commit_match(commit, author, committer): argument
35 return (author is None or author in commit.author.email) and \
36 (committer is None or committer in commit.committer.email)
77 def fixes(repo, commit, warn=False): argument
79 Look at the commit's log message and return a list of commits that it fixes.
129 if commit.hexsha in special:
130 return [repo.commit(c) for c in special[commit.hexsha]]
132 if commit.committed_date < datetime.datetime(2021, 1, 1).timestamp():
[all …]
H A Dgit-arc.143 .Ar commit-ref Op Ar commit-ref ...
45 .Cm diff Oo Fl h Oc Ar commit-ref Op Ar commit-ref ...
47 .Cm list Oo Fl h Oc Ar commit-ref Op Ar commit-ref ...
56 .Ar commit-ref Op Ar commit-ref ...
61 .Ar commit-ref Op Ar commit-ref ...
85 Commit titles must therefore be unique across all open
87 If the title of either a commit or its associated Differential Revision is
91 Most verbs accept one or more git commit references: commit hashes, branch
92 names, commit ranges, and so on.
93 A branch name refers to the single commit at its tip; use a commit range to
[all …]
H A Dgit-arc.sh62 [-s subscriber[,...]] [-t tag[,...]] <commit>|<commit range>
63 diff [-h] <commit>|<commit range>
64 list [-h] <commit>|<commit range>
66 stage [-h] [-b branch] <commit>|<commit range>
67 update [-hl] [-m message] <commit>|<commit range>
246 diff=$(git show -s --format=%B "$commit" |
272 local commit diff title
274 commit=$1
276 # First, look for a valid differential reference in the commit
278 diff=$(log2diff "$commit")
[all …]
H A DHOWTO11 1. Create a series of commits in git. Each commit will be a separate review, so
12 try to make each commit as self-contained as possible. The series of commits
14 one commit might refactor existing code to expose a new API without changing
15 any current functionality. A subsequent commit could then introduce your new
21 subsequent commit, it is a waste of your reviewer's time to have them review
23 bug fix into the commit that introduced it, so that the bug is never
26 The commit headline and commit message will be imported verbatim into
27 Differential, so try to give each commit a meaningful commit message that
33 C1 should be the first commit that you want reviewed, and C2 should be the
34 last commit that you want reviewed. You may add multiple reviewers by
[all …]
H A Dgit-mfc.1154 Open the commit message in an editor before committing each cherry-pick.
167 exits with an error when a reverted commit is specified.
210 uses text strings in commit log messages to establish relationships between
212 It recognizes the following tags in commit log messages:
215 Indicates that this commit fixes the commit identified by
217 When MFCing the referenced commit,
219 will automatically include this fixup commit.
223 indicates that this commit should be MFCed together with the referenced commit.
225 Indicates that this commit should be MFCed after the specified waiting period.
241 .Dq This reverts commit Ar hash ,
[all …]
H A Darcgit28 # commit is submitted as a separate review. For each review, this script will
31 # review_D2185 branch, commit your change with "git commit --fixup HEAD". To\
37 # commit that they fixed. Now you have a clean series of patches to push to
42 echo "Usage: arcgit <-c commit | -r commit1~..commit2> [-R reviewer] " >&2
56 local commit phab_id arc_dir
58 commit=$1
62 echo "Create review for '`git show $commit -s --oneline`'"
69 git checkout $commit > /dev/null || error "Could not checkout $commit"
90 headline="$(git show $commit -s --format=%s)"
102 cat - <<EOF | git commit --allow-empty -F -
[all …]
/freebsd/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp19 #include "clang/Edit/Commit.h"
60 const NSAPI &NS, Commit &commit) { in rewriteObjCRedundantCallWithLiteral() argument
86 commit.replaceWithInner(Msg->getSourceRange(), in rewriteObjCRedundantCallWithLiteral()
174 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) { in maybePutParensOnReceiver() argument
177 commit.insertWrap("(", RecRange, ")"); in maybePutParensOnReceiver()
182 Commit &commit) { in rewriteToSubscriptGetCommon() argument
193 commit.replaceWithInner(CharSourceRange::getCharRange(MsgRange.getBegin(), in rewriteToSubscriptGetCommon()
196 commit.replaceWithInner(SourceRange(ArgRange.getBegin(), MsgRange.getEnd()), in rewriteToSubscriptGetCommon()
198 commit.insertWrap("[", ArgRange, "]"); in rewriteToSubscriptGetCommon()
199 maybePutParensOnReceiver(Rec, commit); in rewriteToSubscriptGetCommon()
[all …]
H A DCommit.cpp1 //===- Commit.cpp - A unit of edits ---------------------------------------===//
9 #include "clang/Edit/Commit.h"
23 SourceLocation Commit::Edit::getFileLocation(SourceManager &SM) const { in getFileLocation()
30 CharSourceRange Commit::Edit::getFileRange(SourceManager &SM) const { in getFileRange()
35 CharSourceRange Commit::Edit::getInsertFromRange(SourceManager &SM) const { in getInsertFromRange()
42 Commit::Commit(EditedSource &Editor) in Commit() function in Commit
47 bool Commit::insert(SourceLocation loc, StringRef text, in insert()
63 bool Commit::insertFromRange(SourceLocation loc, in insertFromRange()
90 bool Commit::remove(CharSourceRange range) { in remove()
102 bool Commit::insertWrap(StringRef before, CharSourceRange range, in insertWrap()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/riscv/
H A Dextensions.yaml116 in-and-around commit 7a6c8ae ("Fix text that describes vfmv.v.f
129 ratified in RVA23 Profiles Version 1.0, with commit 0273f3c921b6
141 Profiles Version 1.0, with commit b1d806605f87 ("Updated to
150 with commit b1d806605f87 ("Updated to ratified state.")
157 commit b1d806605f87 ("Updated to ratified state.")
163 with commit b1d806605f87 ("Updated to ratified state.")
168 values as ratified in RISC-V Profiles Version 1.0, with commit
174 as ratified in RISC-V Profiles Version 1.0, with commit b1d806605f87
181 changes to interrupts as frozen at commit ccbddab ("Merge pull
187 ratified at commit d70011dde6c2 ("Update to ratified state")
[all …]
/freebsd/contrib/xz/
H A DChangeLog1 commit 4b73f2ec19a99ef465282fbce633e8deb33691b3
11 commit 97b7440006d69a30048ff1ffc29fc7a0615e5d51
20 commit 8e1022cfb1d177e482e487c202a0ab43dee761a3
55 commit a3ea8832bec11128597c454f5d14d05ef6010e3f
64 commit c8c22869e780ff57c96b46939c3d79ff99395f87
85 commit a37658bec72ed581a683b7498a75a70122b831b0
100 commit 9e499f714cade4beade31c86dcb0de9fc72d0562
109 commit 1e00837f72e0551ab73927642a8f61aad80c958d
118 commit 8082851b7848ac32fea7bc7cfb84d9b3ef5537b0
127 commit 3cdd412bcea6bb5b4c5d41d2b4104230a5a9569c
[all …]
/freebsd/sys/contrib/device-tree/scripts/
H A Dgit-filter-branch11 # The following functions will also be available in the commit filter:
31 # if you run 'skip_commit "$@"' in a commit filter, it will print
32 # the (mapped) parents, effectively skipping the commit.
45 # if you run 'git_commit_non_empty_tree "$@"' in a commit filter,
46 # it will skip commits that leave the tree untouched, commit the other.
54 git commit-tree "$@"
103 [--commit-filter <command>] [--tag-name-filter <command>]
192 --commit-filter)
212 filter_commit='git commit-tree "$@"';;
218 die "Cannot set --prune-empty and --commit-filter at the same time"
[all …]
/freebsd/tools/tools/git/hooks/
H A Dprepare-commit-msg3 # prepare-commit-msg: Prepare a commit message upon `git commit` for the
9 # cp tools/tools/git/hooks/prepare-commit-msg .git/hooks/
12 commit|message)
26 outfile=$(mktemp /tmp/freebsd-git-commit.XXXXXXXX)
28 # Create a commit message template from three parts:
36 # line to the end of the file) which lists files staged for commit, files
50 # Approved by: <If you needed approval for this commit>
52 # Fixes: <Short hash + commit title fixed by this change>
65 # *full* GitHub or Phabricator URL. The commit author should be set
66 # appropriately, using \`git commit --author\` if someone besides the
/freebsd/contrib/libyaml/
H A DChanges267 - https://github.com/yaml/libyaml/commit/d1003a9
271 - https://github.com/yaml/libyaml/commit/662f4be
276 - https://github.com/yaml/libyaml/commit/303b455
279 - https://github.com/yaml/libyaml/commit/1ef1171
282 - https://github.com/yaml/libyaml/commit/c9479c7
285 - https://github.com/yaml/libyaml/commit/c201bf6
288 - https://github.com/yaml/libyaml/commit/bb8ab82
291 - https://github.com/yaml/libyaml/commit/2d94fc5
294 - https://github.com/yaml/libyaml/commit/df33f25
297 - https://github.com/yaml/libyaml/commit/f56726b
[all …]
/freebsd/sys/contrib/openzfs/.github/workflows/scripts/
H A Dgenerate-ci-type.py4 Determine the CI type based on the change list and commit message.
7 ZFS-CI-Type commit tag) or "auto" (from file change heuristics).
13 - the *last* commit message contains 'ZFS-CI-Type: quick'
16 - all commit messages do not contain 'ZFS-CI-Type: (full|linux|freebsd)'
87 # check last (HEAD) commit message
95 f'requested by HEAD commit {head}')
97 # check all commit messages
100 '--format=ZFS-CI-Commit: %H%n%B', f'{head}...{base}'
106 if line.startswith('ZFS-CI-Commit:'):
107 commit_ref = line.lstrip('ZFS-CI-Commit:').rstrip()
[all …]
/freebsd/contrib/kyua/
H A DCONTRIBUTING.md61 every commit does one (and only one) thing. In particular, commits of the
71 branches. This is required if you need to go through the commit/test cycle
100 Commit messages
103 * Follow standard Git commit message guidelines. The first line has a maximum
105 the whole commit. Then a blank line comes, and then multiple plain-text
106 paragraphs provide details on the commit if necessary with a maximum length of
107 72-75 characters per line. Vim has syntax highlighting for Git commit
124 * If the fix to the issue can be done *in a single commit*, terminate the commit
126 include a note in `NEWS` about the issue in the same commit. Such fixes can
130 * If the fix to the issue requires *more than one commit*, do **not** include
[all …]
/freebsd/sys/contrib/openzfs/.github/
H A DCONTRIBUTING.md29 * [Commit Message Formats](#commit-message-formats)
131 * Please attempt to limit pull requests to a single commit which resolves
133 * Make sure your commit messages are in the correct format. See the
134 [Commit Message Formats](#commit-message-formats) section for more information.
150 …y tests will run. You can always override this by adding `ZFS-CI-Type` line to your commit message:
151 …* If your last commit (or `HEAD` in git terms) contains a line `ZFS-CI-Type: quick`, quick mode is…
152 * Otherwise, if any commit in a PR contains a line `ZFS-CI-Type: full`, full mode is forced.
204 ### Commit Message Formats
206 Commit messages for new changes must meet the following guidelines:
208 first line in the commit message.
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/
H A Dtst.SpeculationCommit.d30 * ASSERTION: Test the normal behavior of speculate() and commit().
45 self->commit = 0;
59 commit(self->var);
60 self->commit++;
64 /(1 == self->commit)/
66 printf("Succesfully tested buffer commit\n");
71 /(0 == self->commit)/
73 printf("Failed to commit buffer\n");
H A Derr.D_COMM_COMM.DisjointCommit.d31 * A clause cannot contain multiple commit() calls to disjoint buffers.
43 self->commit = 0;
80 commit(var1);
81 commit(var2);
82 self->commit++;
86 /self->commit/
93 /!self->commit/
95 printf("Couldnt commit both buffers");
H A Dtst.CommitAfterDiscard.d31 * Call to commit() on a buffer after it has been discarded is silently
44 self->commit = 0;
64 commit(var1);
65 self->commit++;
69 /self->commit/
77 /!self->commit/
79 printf("Couldnt commit a discarded buffer\n");
/freebsd/.github/workflows/
H A Dchecklist.yml15 name: commit
91 for (const commit of commits) {
92 const sob_lines = commit.commit.message.match(/^[^\S\r\n]*signed-off-by:.*/gim);
94 … if (sob_lines == null && !commit.commit.author.email.toLowerCase().endsWith("freebsd.org"))
95 addToChecklist("Missing Signed-off-by lines", commit.sha);
101 …"Expected `Signed-off-by: `, got `" + line.match(/^[^\S\r\n]*signed-off-by:./i) + "`", commit.sha);
102 if (line.includes(commit.commit.author.email))
110 if (commit.commit.author.email.toLowerCase().includes("noreply"))
111 addToChecklist("Real email address is needed", commit.sha);
130 /* Give advice based on what's in the commit */
/freebsd/contrib/llvm-project/clang/include/clang/Edit/
H A DRewriters.h23 class Commit; variable
26 const NSAPI &NS, Commit &commit);
29 const NSAPI &NS, Commit &commit,
33 const NSAPI &NS, Commit &commit);
/freebsd/sys/contrib/openzfs/scripts/
H A Dcommitcheck.sh5 # test commit body for length
14 echo "error: commit message body contains line over ${length} characters"
34 # check commit message for a normal commit
42 echo "error: commit subject over 72 characters"
51 # ensure that no lines in the body of the commit are over 72 characters
93 echo "error: commit message has an improperly formatted CID defect line"
99 # ensure that no lines in the body of the commit are over 72 characters
120 # have a normal commit
/freebsd/lib/geom/union/
H A Dgunion.853 .Cm commit
94 If it works, commit it;
101 so it is important to commit the updates before destroying the union.
180 .It Cm commit
188 .Cm commit
191 .Cm commit
198 .Cm commit
205 .Cm commit
209 .Cm commit
247 gunion commit -v md0-da0p1.union
[all …]

12345678910>>...33