git ls-tree
Gitにls-tree
というサブコマンドがあったのを知ったのでメモ。
Terminal
$ git ls-tree -dr --name-only --full-name --full-tree HEAD
リポジトリ内の全ディレクトリが表示できる。っぽい。速い。
Terminal
$ git rev-parse --show-toplevel
でリポジトリのルートディレクトリの絶対パスが取得できるので、
.bashrc
peco-cd() {
cd "$(git ls-tree -dr --name-only --full-name --full-tree HEAD | sed -e "s|^|`git rev-parse --show-toplevel`/|" | peco)"
}
とか書いて
Terminal
$ peco-cd
でやったーって感じになる。
ターミナルだけじゃなくてunite.vimでもdirectory_rec/async
の代わりに使いたい感じだ( ˘ω˘)
Author And Source
この問題について(git ls-tree), 我々は、より多くの情報をここで見つけました https://qiita.com/sasaplus1/items/cff8d5674e0ad6c26aa9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .