The difference here is that git objects don't change. When you do a `git gc`, you do get new objects at new inodes, but they don't get written to the existing ones. Try this out and you'll see local git clones do indeed create hardlinks:
```
cd $(mktemp -d)
git init test
( cd test; touch README.md; git add README.md; git commit -m "Test"; )
git clone test/.git test_clone
find test_clone/.git/objects test/.git/objects -type f -printf "%i\t%p\n" | sort
```
I do use this, but when I'm collaborating with others, especially a lot of people, I still duplicate it across projects. It pays to be defensive and you can't always get everyone on board with this strategy. Being defensive within your repository prevents issues before they happen.
That's false. It's evidence, but it isn't conclusive. Someone thought that the law suit was worth filing, and that could be because the law suit has a chance of succeeding. It could also be some other reason, and it could also fail even if completely good faith -- this is why the evidence is non-conclusive.
True. Your comment prompted me to take a trip down memory land and look at the accounts I followed. A few are still at it, but the vast majority of them stop posting around 2016, which matches my recollection of the timeframe when most everyone stopped thinking about Twitter.
However, that doesn't answer why a company that wasn't what it used to be still needed so many people for so long.
It's gone up in the ranking of most-visited websites [1]. I'm not even a Twitter/X user but that's a far cry from what the pundits were saying was inevitable.
Woah! That feels like a huge oversight and like it bypasses standard commit logic. The man pages do say `git history` is experimental. Sounds worth a bug report.
I don't think that logic works. In your vein, if I say " If it gets hotter, I'll want it to be colder" that would imply that if it gets colder I'll want it to be hotter. That doesn't necessarily have to be the case thought.
If they made a profit and I want them to pay more than the base fine doesn't mean if they made a loss I want them to pay less than the base fine.
I think the rest of your come t stands though. There is difficulty I proving profit and Hollywood accounting can probably change those numbers.
> If they made a profit and I want them to pay more than the base fine doesn't mean if they made a loss I want them to pay less than the base fine.
I’m not saying they would get a rebate just that for this to be meaningful for a mid sized or larger company requires a large portion of a given fine to be based on profits. So a company receiving a fine based on their profits would argue they made less money from the behavior, it’s a legal argument without any risk.
Consider a fine for a mid sized company that’s base 100k + 10m based on profits it ‘goes away’ if they win but it also ‘goes away’ if they drop it by 99%. Thus just as much effort would be spent on how much money they made as is put forth to defend the fine in the first place.
Now obviously you could set the base large enough to offset that, but doing so defeats the point of profit based fines in the first place. Which means inherent to the idea of profit based fines is the concept they largely go away if a major company can argue their profits where non existent.
It's not about what you want nor is it about exacting revenge. The end goal is simply a marketplace where a given behavior isn't happening. Appropriately structured fines should accomplish that.
It's a nice theory, but only works if the company gets caught and fined enough times to make a difference. Even a zillion dollar fine is useless if the law isn't applied. Also, when the fine comes out of corporate coffers, not individuals' pockets, there is less incentive to comply with the law. If you really want results, fines should come out of management's personal bank accounts, not to mention some jail time.
Sure, if the regulator doesn't move to enforce then the law won't have any effect but at least to me that sounds like a problem with the government as opposed to a justification for draconian penalties.
Targeting management seems like a tactic that should only be employed where great urgency exists such as life threatening danger. I don't think marketing material is anywhere close to qualifying.
I hate my inbox being inundated with spam as much as the next guy but that doesn't mean drawing and quartering the perpetrators is justified.
``` cd $(mktemp -d) git init test ( cd test; touch README.md; git add README.md; git commit -m "Test"; ) git clone test/.git test_clone find test_clone/.git/objects test/.git/objects -type f -printf "%i\t%p\n" | sort ```
You'll see the same inodes used in both clones.
reply