Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
489 views
in Technique[技术] by (71.8m points)

yarnpkg - `yarn install` is changing my repo's .git/config file. How can I track down why?

I've cloned a repo from GitHub (microsoft/azuredatastudio), and whenever I run yarn install, at the end of that 60 second process, my repository-local config file (ADS/.git/config) changes (specifically, pull.rebase gets set to true).

How can I investigate what part of yarn install is changing my pull method and stop it from doing so?

question from:https://stackoverflow.com/questions/65943762/yarn-install-is-changing-my-repos-git-config-file-how-can-i-track-down-why

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I figured it out: the repo's package.json had a postinstall step defined, which contained cp.execSync('git config pull.rebase true');


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...