File: quilt.quiltrc

package info (click to toggle)
quilt 0.66-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,976 kB
  • sloc: sh: 5,969; perl: 1,269; lisp: 506; makefile: 431
file content (35 lines) | stat: -rw-r--r-- 1,236 bytes parent folder | download | duplicates (4)
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
# Example /etc/quilt.quiltrc

# Options passed to GNU diff when generating patches
QUILT_DIFF_OPTS="--show-c-function"

# Options passed to GNU patch when applying patches
#QUILT_PATCH_OPTS="--ignore-whitespace"

# Options passed to diffstat when generating patch statistics
#QUILT_DIFFSTAT_OPTS="-f0"

# Options to pass to commands (QUILT_${COMMAND}_ARGS)
QUILT_PUSH_ARGS="--color=auto"
QUILT_DIFF_ARGS="--no-timestamps --color=auto"
QUILT_REFRESH_ARGS="--no-timestamps --backup"
QUILT_SERIES_ARGS="--color=auto"
QUILT_PATCHES_ARGS="--color=auto"

# When non-default less options are used, add the -R option so that less outputs
# ANSI color escape codes "raw".
[ -n "$LESS" -a -z "${QUILT_PAGER+x}" ] && QUILT_PAGER="less -FRX"

# (Add "-p ab" to QUILT_DIFF_ARGS and QUILT_REFRESH_ARGS to get
#  -p1 style diffs with a/file and b/file filenams in headers
#  instead of dir.orig/file and dir/file.)

# The directory in which patches are found (defaults to "patches").
#QUILT_PATCHES=patches

# Prefix all patch names with the relative path to the patch?
QUILT_PATCHES_PREFIX=yes

# Use a specific editor for quilt (defaults to the value of $EDITOR before
# sourcing this configuration file, or vi if $EDITOR wasn't set).
#EDITOR=nedit