Changeset 84267 in vbox
- Timestamp:
- May 12, 2020 8:37:44 AM (5 years ago)
- Location:
- trunk/tools/bin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/backport-common.sh
r83680 r84267 73 73 MY_EXTRA_ARGS= 74 74 MY_DEBUG= 75 MY_FORCE= 75 76 76 77 while test $# -ge 1; … … 127 128 --first-rev|--first|-1) 128 129 MY_FIRST_REV=1 130 ;; 131 132 --force) 133 MY_FORCE=1 129 134 ;; 130 135 … … 160 165 echo " --first-rev, --first, -1" 161 166 echo " Merge only: Check that the branch does not have any pending changes." 167 echo " --force" 168 echo " Forces backporting, regardless of ancestry. Use with caution!" 162 169 echo " --update-first, --update, -u" 163 170 echo " Merge only: Update the branch before merging." … … 213 220 exit 2; 214 221 fi 215 -
trunk/tools/bin/backport-merge.sh
r83680 r84267 71 71 echo "*** Merging r${MY_REV} ..." 72 72 echo "***" 73 if [ -n "${MY_FORCE}" ]; then 74 MY_MERGE_ARGS="$MY_MERGE_ARGS--ignore-ancestry" 75 fi 73 76 if "${MY_SVN}" merge ${MY_MERGE_ARGS} "${MY_TRUNK_DIR}" "${MY_BRANCH_DIR}" -c ${MY_REV}; then 74 77 # Check for conflict.
Note:
See TracChangeset
for help on using the changeset viewer.