diff --git a/Examples.md b/Examples.md index 17f4800..bc55b25 100644 --- a/Examples.md +++ b/Examples.md @@ -125,7 +125,7 @@ fbr() { fco() { local commits commit commits=$(git log --pretty=oneline --abbrev-commit --reverse) && - commit=$(echo "$commits" | fzf --tac +m -e) && + commit=$(echo "$commits" | fzf --tac +s +m -e) && git checkout $(echo "$commit" | sed "s/ .*//") } ```