diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2014-03-20 10:38:53 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2014-03-20 10:38:53 +0900 |
| commit | 678e950b6dcb786473bf5c5e0d097cfc1e6bfbfa (patch) | |
| tree | 4873c0856b52b8541056fd7eda152d6e7b8e9771 | |
| parent | 9ea651f1cd3c8d9e97f21f7e04838ab53737c91c (diff) | |
| download | fzf-678e950b6dcb786473bf5c5e0d097cfc1e6bfbfa.tar.gz | |
Use --reverse option in fco example (#29)
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -172,7 +172,7 @@ fbr() { # fco - checkout git commit fco() { local commits commit - commits=$(git log --pretty=oneline --abbrev-commit) && + commits=$(git log --pretty=oneline --abbrev-commit --reverse) && commit=$(echo "$commits" | fzf +s +m -e) && git checkout $(echo "$commit" | sed "s/ .*//") } |
