diff options
author | Christopher Baines <mail@cbaines.net> | 2024-04-16 22:46:47 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-04-16 22:50:06 +0100 |
commit | 99e7a93d57fb1fbcc98a857f50b611d1df111d9a (patch) | |
tree | e2148ef3c00409238c07ec30d049a83b1fb2f2e6 /gnu/packages | |
parent | a45b2c7c63c6af9c42698e12b6809c41c0926de3 (diff) | |
download | guix-99e7a93d57fb1fbcc98a857f50b611d1df111d9a.tar guix-99e7a93d57fb1fbcc98a857f50b611d1df111d9a.tar.gz |
gnu: Add comment to the bottom of version-control.scm.
This will hopefully discourage patches which add new packages to the bottom of
files, as this increases the likelihood of conflicts when applying patches.
If there are more specific ways that packages should be arranged in specific
modules, this message can be updated accordingly.
* gnu/packages/version-control.scm: Add comment at end of file.
Change-Id: I3d20a6fd957d9cfee9d7b4a4c7979c4202a0fe3a
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/version-control.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 55fa49e632..0c7c496c82 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -4173,3 +4173,9 @@ comes as a command line app and also an Emacs interface.") (description "Compute various size metrics for a Git repository, flagging those that might cause problems or inconvenience.") (license license:expat))) + +;;; +;;; Avoid adding new packages to the end of this file. To reduce the chances +;;; of a merge conflict, place them above by existing packages with similar +;;; functionality or similar names. +;;; |