diff options
author | Joey Hess <joey@kitenet.net> | 2011-10-11 22:52:55 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-10-11 22:53:32 -0400 |
commit | 9c04d1e523dc513c64adf251046e13c4e7f7b5dc (patch) | |
tree | 9e9161023ec854c92f6a62101cc79e73033906ae /debian/control | |
parent | b505ba83e8b62a9ed0ec2fb96448c5fc801184d9 (diff) |
fix git 1.7.7 breakage
* This version of git-annex only works with git 1.7.7 and newer.
The breakage with old versions is subtle, and affects
annex.numcopies .gitattributes settings, so be sure to upgrade git
to 1.7.7. (Debian package now depends on that version.)
* Don't pass absolute paths to git show-attr, as it started following
symlinks when that's done in 1.7.7. Instead, use relative paths,
which show-attr only handles 100% correctly in 1.7.7. Closes: #645046
Unfortunatly I can find no way to work with the old and new gits, as
the old had bugs that require absolute paths, while the new doesn't like
them at all. And the behavior of git show-attr in 1.7.7. is the same as
eg, git add of an absolute path to a symlink, so seems entirely
intentional and not likely to change.
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/control b/debian/control index cb5a8212a..49f564fdb 100644 --- a/debian/control +++ b/debian/control @@ -29,7 +29,7 @@ Package: git-annex Architecture: any Section: utils Depends: ${misc:Depends}, ${shlibs:Depends}, - git | git-core, + git (>= 1:1.7.7), uuid, rsync, wget | curl, |