Git has an 'archive' command which will zip up the contents of the repo (at a commit if needed), you could use that and then FTP it to your server. On the Mac version of SourceTree the Archive action is available and you can also use a Custom Action to launch a script which does all the actions - on Windows you'll have to simply write a batch script just to use 'git archive' and ftp which you launch yourself.
Whoa, sounds cool, especially the custom action stuff. Is it possible to set up a custom action for Git-Ftp as well? https://github.com/git-ftp/git-ftp
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do anything you can call on the command line - the only caveat is that if you've had to alter your environment in the terminal for something to work (add to PATH or create new environment vars for example), full OS X apps don't see those changes automatically because their environment is different. You can get around that most easily if you've altered your .profile by making sure that you only call full shell scripts from SourceTree (those with a shebang at the top loading them through /bin/sh or /bin/bash) - because those will get all your full terminal environment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ca you just show me an example on how to "making sure that you only call full shell scripts from SourceTree"? I've jsut opened up my .profile, and actually have no idea how to grant access to the shells for SourceTree.
Custom action is just set up/and hooked in, but as you expected it tells "launch path not accessible".
Thanks for your time on this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Uh, I just put it into /usr/local/bin (I saw this path in my .profile), now it is accessible/executable within SourceTree. Sorry for this, this is my first shell script adventure.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.