On 7/22/22 8:54 PM, Chris Torek wrote:
On Fri, Jul 22, 2022 at 5:29 PM David Chmelik<davidnchmelik@xxxxxxxxx>
wrote:
On 7/22/22 10:40 AM, Chris Torek wrote:
All true. But Git has no control over, or affect on these: Git does
not attempt to affect ownership or permission of any build products
at all. Git only attempts to affect the execute permission of
specific files as directed by the committed file mode (and provided
`core.filemode` is enabled).
Not even projects' .git* subdirectories? They typically are/become
user-unwritable though deletable with several/many confirmations so I
usually sudo (recommended against).
Ah, I thought you were (and I definitely was) talking only about the
*build products*. The stuff inside `.git` itself: some of that, Git
does set
to unwritable.
Initially wasn't; don't know why took three replies to clear up
(initially clearly specified non-root usage which others ignored and
mentioned/focused unrelated root topic).
There is no need to use `sudo` though: a simple
"rm -rf .git" will blow away the Git repository itself. However:
Starts with 'rm -rf .' which is bad and worse is one key away from 'rm
-rf /': anyone who accidentally pressed <ENTER> after either what I put
in quotation marks (I did both as root on my personal files and entire
PC in 1990s... have you ever? It was normal to use root account then
rather than non-UNIX-like OS that lock it) wants to never again so
typically uses alias which done with sudo (still considered worst last
resort) still has fewer confirmations (one rather than every single
user-unwritable file). I can't believe I'm asking to encourage avoid 'rm
-rf', on mailing list of a tool on UNIX/GNU/Linux (POSIX-based)
operating systems, original which people started avoiding 'rm -rf' in
1970s, but now people say just do it!
I'd rather opt-out of .git* subdirectories for every clone.
In that case, *don't run `git clone in the first place*. The purpose of
`git clone` is to get you the entire repository. If you want a single
working
tree, use `git archive` to make an archive from the commit you want,
and extract that archive to get the tree you want, without getting all
the *other* revisions.
Seems much more complicated (and less-documented) and most popular git
sites (though #1 isn't Free/Libre/Opensource Software (FLS, OSS, FOSS,
FLOSS) so rightly condemned) disallow archive. Though I my shell alias
rewrites 'git clone' to then 'chmod u+w .git*' or alternatively 'find .
-iname .git* -perm u-w -exec chmod u+w {} \+' and usually before
archiving, 'sudo rm -rf .git*', aliases are sometimes unavailable and
now a few projects won't compile without such directories. I know you
can't control popular sites' mistakes (nor projects never doing
normally-numbered releases) and they should be irrelevant: unfortunately
most projects use most popular/broken sites, sadly including core
component projects for some/most/all POSIX-based OSs, so couldn't syntax
be easier/detailed so testers can opt-out user-unwritables (for
thousands/millions major cases archive disallowed)?
Apparently many/all version control systems (VCS) make such
(initially) user-unwritables so may consider this request odd but for
tester-only people, it's not odd to dislike such we don't use (unless
ever changes... I've used VCS last 11+ years (likely since late 1990s
or early '0s) and don't plan to use .git* & etc. decades into
foreseeable future but in very-slight chance I do presumably such
files/directories would be useful... for now I've spent hours/days over
decades in frustration: 11+ years ago when projects had a minor bug said
'try from VCS (nightly)' I was glad but led to nightly/critical bugs and
user-unwritables... VCS are a godsend for decreasing years update waits
but (as with most science/technology) have advantages & disadvantages...)
--D