-
Notifications
You must be signed in to change notification settings - Fork 25
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
ApexRefreshProject doesn't remove local files that don't exist on remote #70
Comments
Hello @kgrzywacz
No, this is not the case. Perhaps documentation needs to be updated to clarify this... If you have suggestions on alternative wording please let me know. |
Hello @neowit, I think my assumption was wrong. I'm just used to different behaviour for similar commands. Would it be possible to add new command - |
I am not sure about this. I think a much better/simpler option would be if you wrote your own shell or vim script which removes what you need. find src/ -type f -not -name 'package.xml' -print0 | xargs -0 rm -- |
Same as title, while in documentation we have the following:
Refresh current project and download new/modified files from SFDC, replacing all local files.
Which for me indicated that all local files will be removed, and new files will be downloaded. Is current behaviour intended?
The text was updated successfully, but these errors were encountered: