Maikel

Results 421 comments of Maikel

No. You need two commands. But with scopes, you can do something like this: ``` sh git ftp push -s prod1 && git ftp push -s prod2 ```

Yes, I just looked into curl which is used by Git-ftp and it doesn't change the file permissions by default. For each file, we would need to check the file...

There is no generic way to pass on curl options at the moment. The only option you have is to modify your version of git-ftp. There is a function called...

Thank you for the detailed description. I can confirm that it is a Linux problem as well. It is caused by the way git handles special characters. You can try...

I had a closer look at this problem. My suggested work-around works for at least for Linux: ``` git config core.quotepath false ``` But this is only safe as long...

Thank you @Txeras! It's great to see a solution here. This has been a problem for a long time.

A documentation update #437 from two days ago suggested to install brotli. ```sh brew install brotli ``` Does that work?

> I would suggest that the install formula for git-ftp should be changed to use the curl client provided with MacOS on modern Systems (10.13.x) I do agree that the...

Good point. I think it would be a good idea to ignore these files by default. But if we have a default, you should be able to overwrite it. The...