From 42f43d018334c73cc4ef4ec6a614ec54063807c3 Mon Sep 17 00:00:00 2001 From: Raine Virta Date: Sun, 10 May 2015 19:23:52 +0300 Subject: [PATCH] fix conflict of fc with fcs --- Examples.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples.md b/Examples.md index 7f4e051..57c152b 100644 --- a/Examples.md +++ b/Examples.md @@ -181,9 +181,9 @@ fshow() { ``` ```sh -# fc - get git commit sha -# example usage: git rebase -i `fc` -fc() { +# fcs - get git commit sha +# example usage: git rebase -i `fcs` +fcs() { local commits commit commits=$(git log --color=always --pretty=oneline --abbrev-commit --reverse) && commit=$(echo "$commits" | fzf --tac +s +m -e --ansi --reverse) &&