-
Notifications
You must be signed in to change notification settings - Fork 606
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
feat: add --remove-orphans
flag to compose down
#1366
feat: add --remove-orphans
flag to compose down
#1366
Conversation
|
@AkihiroSuda Thanks for your help. I think the main reason is the different behavior of docker and nerdctl. Could your please take a look at this scenario? |
41c5811
to
685f49c
Compare
Is this still draft? Looks good but needs squashing commits |
maybe also rebase to get the fix for flaky tests |
@AkihiroSuda @djdongjin Hi, sorry for the delay. PTAL. |
Please squash commits |
7c89747
to
f2c27ae
Compare
@AkihiroSuda I used |
@stillfox-lee can you try this and see if it works? First update your local main branch ( Then rebase this branch and resolve conflict ( Otherwise, maybe you can also try create a new local branch and cherrypick your own commit to the new branch and force push from the new local branch to the old remote branch. |
Signed-off-by: Siyi Liao <stillfox.lee@gmail.com>
f2c27ae
to
426208f
Compare
@djdongjin It works! Thanks a lot. |
By the way, how should I squash commits in this case (merged main branch already)? |
Personally I don't use # update local main
git checkout main
git pull upstream main
# rebase dev branch, so my 5 commits are on the top
git checkout dev
git rebase main
# squash / interactively rebase the latest 5 commits
git rebase -i HEAD~5 |
Got it. Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
Signed-off-by: Siyi Liao stillfox.lee@gmail.com
close: #1344