@snapcommit/cli 3.9.18 → 3.9.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -646,10 +646,21 @@ async function executeGitCommands(commands) {
|
|
|
646
646
|
else if (cmd.includes('git stash')) {
|
|
647
647
|
// Stashing
|
|
648
648
|
if (cmd.includes('pop') || cmd.includes('apply')) {
|
|
649
|
-
|
|
649
|
+
// Only show message if there was actually something to pop
|
|
650
|
+
if (output.trim() && !output.includes('No stash entries')) {
|
|
651
|
+
console.log(chalk_1.default.green('\n✓ Stash applied\n'));
|
|
652
|
+
}
|
|
650
653
|
}
|
|
651
|
-
else {
|
|
652
|
-
|
|
654
|
+
else if (!cmd.includes('list')) {
|
|
655
|
+
// Check if there was actually something to stash
|
|
656
|
+
if (output.includes('Saved working directory') || output.includes('No local changes')) {
|
|
657
|
+
if (output.includes('No local changes')) {
|
|
658
|
+
// Nothing to stash - that's fine, don't show message
|
|
659
|
+
}
|
|
660
|
+
else {
|
|
661
|
+
console.log(chalk_1.default.green('\n✓ Changes stashed\n'));
|
|
662
|
+
}
|
|
663
|
+
}
|
|
653
664
|
}
|
|
654
665
|
}
|
|
655
666
|
else if (cmd.includes('git reset')) {
|
|
@@ -746,6 +757,11 @@ async function executeGitCommands(commands) {
|
|
|
746
757
|
console.log(chalk_1.default.gray('💡 Tip: Most conflicts are simple! Just pick the better code.\n'));
|
|
747
758
|
return;
|
|
748
759
|
}
|
|
760
|
+
// Skip harmless errors
|
|
761
|
+
if (errorMsg.includes('no stash entries found') || errorMsg.includes('no local changes to save')) {
|
|
762
|
+
// Nothing to stash/pop - that's fine, continue silently
|
|
763
|
+
continue;
|
|
764
|
+
}
|
|
749
765
|
// Try to auto-fix common errors
|
|
750
766
|
const fixed = await tryAutoFix(error, cmd);
|
|
751
767
|
if (!fixed) {
|