From: Saba Saba Date: Thu, 9 Feb 2023 17:26:19 +0000 (-0500) Subject: Added messages for better UX X-Git-Url: http://sabadev.xyz:4321/?a=commitdiff_plain;h=d7ea3c729c3bd4be35eea70f1d0e707d9a34af7a;p=git-repl.git Added messages for better UX --- diff --git a/git-repl.cl b/git-repl.cl index 82289ac..0e1c6b3 100644 --- a/git-repl.cl +++ b/git-repl.cl @@ -96,21 +96,27 @@ "Stashes your current configuration by first unskipping it and then stashing it. This operation fails if you have any modified files." (clean-working-directory (progn + (write-line "Unskipping files...") (no-skip-all) + (write-line "Stashing files...") (save-stash)))) (defun-public pop-config () "Pops the stash and skips it to store it as your configuration. This operation fails if you have any modified files." (clean-working-directory (progn + (write-line "Popping stash...") (pop-stash) + (write-line "Skipping files...") (skip-modified)))) (defun-public apply-config () "Applies the stash and skips it to store it as your configuration. This operation fails if you have any modified files." (clean-working-directory (progn + (write-line "Applying stash...") (apply-stash) + (write-line "Skipping files...") (skip-modified)))) (defun-public delete-branch (branch-name)