File: clang-format-merge-driver.sh

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 1,998,492 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (37 lines) | stat: -rwxr-xr-x 1,497 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env bash

# This script can be installed in .git/config to allow rebasing old patches across
# libc++'s clang-format of the whole tree. Most contributors should not require that
# since they don't have many pre-clang-format patches lying around. This script is to
# make it easier for contributors that do have such patches.
#
# The script is installed by running the following from the root of your repository:
#
#   $ git config merge.libcxx-reformat.name "Run clang-format when rebasing libc++ patches"
#   $ git config merge.libcxx-reformat.driver "libcxx/utils/clang-format-merge-driver.sh %O %A %B %P"
#
# This is based on https://github.com/nico/hack/blob/main/notes/auto_git_rebase_across_mechanical_changes.md.
# Many thanks to Nico Weber for paving the way here.

# Path to the file's contents at the ancestor's version.
base="$1"

# Path to the file's contents at the current version.
current="$2"

# Path to the file's contents at the other branch's version (for nonlinear histories, there might be multiple other branches).
other="$3"

# The path of the file in the repository.
path="$4"

clang-format --style=file --assume-filename="$path" < "$base" > "$base.tmp"
mv "$base.tmp" "$base"

clang-format --style=file --assume-filename="$path" < "$current" > "$current.tmp"
mv "$current.tmp" "$current"

clang-format --style=file --assume-filename="$path" < "$other" > "$other.tmp"
mv "$other.tmp" "$other"

git merge-file -Lcurrent -Lbase -Lother "$current" "$base" "$other"