Utilizza momentaneamente un file ssh specifico per la connessione git
ssh-agent sh -c 'ssh-add ~/.ssh/laegis_gitlab_rsa; git status'
Vedi tutti i commit negli ultimi tot giorni
git log --since="3 week ago" --name-only --pretty=format: | sort | uniq
specificare il time range con since
Mostra i file di un determinato commit tramite SHA
git show --pretty="" --name-only [Commit-SHA]
Prendi un singolo commit da un altro branch
git cherry-pick -n [Commit-SHA]
l’opzione -n previene il commit automatico sul nuovo branch
Mostra i file modificati da un utente
git log --author="[author]" --name-only --pretty=format: | sort | uniq
Questi sono comandi Git