Blog posts on "git"

< Get back to blog

EN How to git stash one file and add a message

Git stash might be one of the most useful git commands in my opinion. We can understand git stash as a drawer where we want to keep temporarily some work done in a file (or multiple files) to keep on working on it afterwards. The common use is: [...] To store everything in the working directory (meaning "everything tracked", which is everything that is not committed but new files not tracked yet)....