Hi, I've set up my pi so that I can connect without a password. (id_rsa.pub) I would like to write a batch script that simply: ssh pi@10.10.10.73 cd ~/gitRepos/MyRepo git pull Any ideas on how to do this? Note: I have tried this in a .sh file: ssh pi@10.10.10.73 <<'ENDSSH' cd ~/gitRepos/MyRepo git p...