Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 347 Bytes

discard.md

File metadata and controls

10 lines (7 loc) · 347 Bytes

💩 DISCARD

1. Discarding local changes (permanently)

Git Commnad Description
git checkout -- file discards local changes in a file (permantently)
git checkout -- . discards local changes in all file (permantently)

👈BACK