##// END OF EJS Templates
sidedata: enable sidedata computers to optionally rewrite flags...
sidedata: enable sidedata computers to optionally rewrite flags Sidedata computers may want to influence the flags of the revision they touch. For example, the computer for changelog-based copytracing can add a flag to signify that this revision might affect copytracing, inversely removing said flag if the information is no longer applicable. See inline documentation in `storageutil` for more details. Differential Revision: https://phab.mercurial-scm.org/D10344

File last commit:

r47498:68538348 default
r47844:223b4723 default
Show More
common.sh
7 lines | 106 B | application/x-sh | BashLexer
mkcommit() {
name="$1"
shift
echo "$name" > "$name"
hg add "$name"
hg ci -m "$name" "$@"
}