Added a comment: confirming

This commit is contained in:
yarikoptic 2018-08-30 15:57:39 +00:00 committed by admin
parent a3fa9ea0b5
commit 4b05d4179d

View file

@ -0,0 +1,41 @@
[[!comment format=mdwn
username="yarikoptic"
avatar="http://cdn.libravatar.org/avatar/f11e9c84cb18d26a1748c33b48c924b4"
subject="confirming"
date="2018-08-30T15:57:39Z"
content="""
just wanted to say that I see the same (thanks Kyle for copy/pasteable example):
[[!format sh \"\"\"
$> git init tmp-v6 && cd tmp-v6
git annex init --version=6
echo foo >foo && git annex add foo && git commit -m'add foo'
git annex unlock foo
echo more >>foo && git annex add foo && git commit -m'modify foo'
ls -l $(readlink foo)
Initialized empty Git repository in /tmp/tmp-v6/.git/
init ok
(recording state in git...)
add foo ok
(recording state in git...)
[master (root-commit) 19d9427] add foo
1 file changed, 1 insertion(+)
create mode 120000 foo
unlock foo ok
(recording state in git...)
add foo ok
(recording state in git...)
[master 9a2a079] modify foo
1 file changed, 1 insertion(+), 1 deletion(-)
-rw------- 1 yoh yoh 9 Aug 30 11:52 .git/annex/objects/60/QW/SHA256E-s9--323409d9a706bc08d0b2c7f71309e21a757367c81cffb405a88e61749d79952d/SHA256E-s9--323409d9a706bc08d0b2c7f71309e21a757367c81cffb405a88e61749d79952d
$> umask
077
$> git annex version
git-annex version: 6.20180807+git142-g1a08a8613-1~ndall+1
\"\"\"]]
tried with umask 022 - the same
"""]]