Post commit step in xCode
Is there a way to make a post commit (to git) step in xCode 4?
I need this to call a step that will ssh the server and make a pull to automatically get files on server. A button that will automatically copy files I selected to a server via开发者_高级运维 ssh/scp/sftp/ftp will be good too.Why not using a "classic" post-commit git hook? > githook
Xcode or not, this is git
, and calling a script on commit doing rsync
, git push
or whatever is possible.
Xcode doesn't have this functinality. File a request at bugreporter.apple.com. For now, third-party tools or the command line are your only options.
精彩评论