4520 shaares
3 résultats
taggé
transfert
Il existe un autre client FTP : lftp
Pour rapatrier des données sur votre PC :
rsync -avz --stats --progress -e "ssh -p PORT remoteuser@remotehost:/remote/dir" /mon/dir/de/backup
Transférer un clone GIT d'un serveur vers un autre (avec tout son historique)
git clone --mirror <URL to my OLD repo location>
cd <New directory where your OLD repo was cloned>
git remote set-url origin <URL to my NEW repo location>
git push -f origin