Skip to content

Commit 4d1c26e

Browse files
committed
Add merge driver
1 parent f97c169 commit 4d1c26e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

scripts/doxy_merge_driver.sh

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env sh
2+
3+
# This script can be used in conjunction with git and the doc-reformatting
4+
# script (reformat_docs.py) to facilitate automatic rebases/merges spanning the
5+
# transition to Doxygen-style comments.
6+
# Usage information: https://svn.cprover.org/wiki/doku.php?id=doxygen
7+
8+
script_dir="$(dirname "$0")"
9+
10+
python "${script_dir}/reformat_docs.py" "$1" -i
11+
python "${script_dir}/reformat_docs.py" "$2" -i
12+
python "${script_dir}/reformat_docs.py" "$3" -i
13+
git merge-file "$1" "$2" "$3"

0 commit comments

Comments
 (0)