Thanks for the git status pointer, that is something new that I learned.
Although I generally don't use dirty check as it add a delay to each terminal prompt.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
git branch --show-currentwill give you the current branch name.For "dirtiness" detection you might just run
git status --porcelain. If it outputs nothing, the working directory is clean.Thanks for the
git statuspointer, that is something new that I learned.Although I generally don't use
dirtycheck as it add a delay to each terminal prompt.