Ho creato un repository git per eseguire il mirroring di un sito live (che è un repository git non nudo):
git clone --mirror ssh://user@example.com/path/to/repo
Ora, per mantenere questo clone mirror aggiornato con tutte le modifiche dalla sua origine remota, quale comando o comandi devo usare?
Vorrei mantenere tutto aggiornato: commit, ref, hook, branch, ecc.
Grazie!
git fetch
? O dagit remote update
solo farà tutto?