Home | History | Annotate | Download | only in tools

Lines Matching refs:commit

51   -l    Manually specify the git commit ID of the last push to trunk.
97 echo ">>> Step $CURRENT_STEP: Detect commit ID of last push to trunk."
101 # Print assumed commit, circumventing git's pager.
103 confirm "Is the commit printed above the last push to trunk?"
116 # These version numbers are used again later for the trunk commit.
124 for commit in $COMMITS ; do
125 # Get the commit's title line.
126 git log -1 $commit --format="%w(80,8,8)%s" >> "$CHANGELOG_ENTRY_FILE"
127 # Grep for "BUG=xxxx" lines in the commit message and convert them to
129 git log -1 $commit --format="%B" \
135 # Append the commit's author for reference.
136 git log -1 $commit --format="%w(80,8,8)(%an)" >> "$CHANGELOG_ENTRY_FILE"
187 echo ">>> Step $CURRENT_STEP: Commit to local branch."
192 git commit -a -m "$PREPARE_COMMIT_MSG" \
193 || die "'git commit -a' failed."
200 echo ">>> Step $CURRENT_STEP: Commit to the repository."
234 # Convert the ChangeLog entry to commit message format:
254 }' > "$COMMITMSG_FILE" || die "Commit message editing failed."
288 echo ">>> Step $CURRENT_STEP: Commit to local trunk branch."
290 git commit -F "$COMMITMSG_FILE" || die "'git commit' failed."
298 compile, run tests. Do you want to commit this new trunk revision to the \
305 echo ">>> Step $CURRENT_STEP: Commit to SVN."
334 || die "Workspace is not clean. Please commit or undo your changes."
359 git commit -am "Update V8 to version $MAJOR.$MINOR.$BUILD.
361 TBR=$REVIEWER" || die "'git commit' failed."