We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1daa086 commit f06ba5fCopy full SHA for f06ba5f
1 file changed
merge-overlay
@@ -66,15 +66,15 @@ git_ignored_should_discard() {
66
echo -e "${YELLOW}⚠ Git-ignored file detected:${NC} $rel_path"
67
echo ""
68
while true; do
69
- read -p "How should git-ignored files be handled? [a/A=ask (review), D=discard all]? " choice
+ read -p "How should git-ignored files be handled? [a/A=ask (review), R=discard all]? " choice
70
case "$choice" in
71
a|A)
72
echo "→ Git-ignored files will be treated like regular changes"
73
74
GIT_IGNORED_CHOICE="keep"
75
return 1
76
;;
77
- D)
+ R)
78
echo "→ All git-ignored files will be discarded"
79
80
GIT_IGNORED_CHOICE="discard"
0 commit comments