-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After 'lando rebuild -y' git status shows changes #37
Comments
It's because Drush is added with Composer and See also #35. I have created a PR (#41) which removes To try it out, pull down and check out the PR :
Remove Drush and see that Git status is unchanged:
|
Although #41 was merged this still seems to be happening. I set up this project yesterday following the README instructions and still end up with those modifications --
|
The However, you still need to remove Drush as outlined above, to get to a clean Git status. |
Got it. Thanks, @gitressa. That worked. 👍 |
@pyrello @gitressa @cdubz I didn't test this, but maybe here: https://github.com/thinktandem/drupal-contributions/blob/9.x/.lando.yml#L14 we could: run:
- cd /app/web && composer require drush/drush && composer install
- git checkout composer.json composer.lock
- mkdir -p private/browsertest_output
- yarn install --non-interactive --cwd /app/web/core i think drush would still work and the git tree would be clean, but I did not test it. |
I've recently opened a MR with your solution @serundeputy, testing here it looks like it fixes, it would be nice to have a review there. #58 |
Hello. I've been trying out this tool and I notice that when I go to the
web
directory afterlando rebuild -y
and rungit status
, that I am seeing the following output:If you are careful with running your git commands you can avoid any issues, but it also makes it more likely that someone (me) is going to make a mistake by running
git -am
at some point.I'm just wondering if it is possible to resolve this? Thanks!
The text was updated successfully, but these errors were encountered: