A Simple Tweak for Making 'git rebase' Safe on OS X
git-tower.com
A Simple Tweak for Making 'git rebase' Safe on OS X
1–10 of 12 posts
Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#2Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#3What are the consequences of the two options aside from fixing the original issue with git rebase? Should I be worried about some critical OS feature being disabled with option A or very slow git performance with option B?
Personally, I've never encountered this issue and I rebase frequently.
Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#4What are the consequences of the two options aside from fixing the original issue with git rebase? Should I be worried about some critical OS feature being disabled with option A or very slow git performance with option B?
This leaves you with the option to disable the core.trustctime setting, which I believe has no noticeable performance drawback for most or maybe all Git users.
If you are sensitive about the performance, perhaps a third option would be to make an alias for affected commands, especially for rebase:
_rebase = "-c core.trustctime=false rebase"
Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#5Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#6Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#7What are the consequences of the two options aside from fixing the original issue with git rebase? Should I be worried about some critical OS feature being disabled with option A or very slow git performance with option B?
Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#8Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#9Hopefully one of the solutions pointed in the article will prevent any future issues with 'git rebase'.
Re: A Simple Tweak for Making 'git rebase' Safe on OS X
#10I don't know enough about git to say whether my suggested fix is equivalent to turning trustctime off by default.