Existe-t-il une commande git pour annuler toutes les modifications non validées dans l'arborescence et l'index et pour supprimer également les nouveaux fichiers et dossiers?
Réponses
Trop de publicités?
Ramashish Baranwal
Points
722
Zarne Dravitzki
Points
419
Utilisez "git checkout - ..." pour annuler les modifications dans le répertoire de travail
git checkout -- app/views/posts/index.html.erb
ou
git checkout -- *
supprime toutes les modifications apportées aux fichiers non statisés dans l'état git
modified: app/controllers/posts.rb
modified: app/views/posts/index.html.erb
glumgold
Points
46
Josnidhin
Points
5408