]> git.proxmox.com Git - libgit2.git/commit
Make mode handling during init more like git
authorRussell Belfer <rb@github.com>
Wed, 27 Feb 2013 21:44:15 +0000 (13:44 -0800)
committerRussell Belfer <rb@github.com>
Wed, 27 Feb 2013 21:44:15 +0000 (13:44 -0800)
commit18f08264082dd436914c3c06d369e7a98ddf17aa
tree3d254870ff7e85d9edaff5ffa80e733fdefffcb2
parent0d1b094b07d836a657ad9e458e04490d1e72d365
Make mode handling during init more like git

When creating files, instead of actually using GIT_FILEMODE_BLOB
and the other various constants that happen to correspond to
mode values, apparently I should be just using 0666 and 0777, and
relying on the umask to clear bits and make the value sane.

This fixes the rules for copying a template directory and fixes
the checks to match that new behavior.  (Further changes to the
checkout logic to follow separately.)
src/fileops.c
src/fileops.h
src/repo_template.h
src/repository.c
tests-clar/repo/init.c