Ignore qlot files when pushing changes.

This commit is contained in:
Alexander Artemenko 2021-02-07 02:12:40 +03:00
parent 5689ebaf14
commit 858def8938

View file

@ -77,7 +77,7 @@ behaviour could be overriden by keyword argument ``:raise t``."
(defun git-repository-was-changed-p ()
;; if git status returns something, then repository have uncommitted changes
(> (length (git "status --porcelain"))
(> (length (git "status --porcelain | grep -v qlfile"))
0))