Git 및 FZF를 사용하여 시간 경과에 따른 python 함수의 기록 보기
#!/usr/bin/env bash
# FZF Wrapper over git to interactively search code changes inside functions
readarray -t choices < <(git ls-files | fzf \
--prompt="Choose File: " \
--height 40% --reverse \
)
printf "%s\n" "$(grep -o -P '(?<=def ).*?(?=\()' $choices)" | fzf \
--ansi --preview "echo {} | xargs -I{} git log --color -L :{}:$choices" \
--prompt="Choose function/method: " \
--bind 'j:down,k:up,ctrl-j:preview-down,ctrl-k:preview-up,ctrl-space:toggle-preview' --preview-window right:60% \
실제 트릭은
grep
를 사용하여 주어진 파일에서 모든 파이썬 함수와 메서드 이름을 찾는 것입니다.$ grep -o -P '(?<=def ).*?(?=\()' rich/columns.py
__init__
add_renderable
__rich_console__
iter_renderables
다음으로 이
git
명령에서 파일 이름과 함께 함수 이름을 연결합니다.git log -L :funciton_name:relative_file_path
자세히 알아보기git log searching
다음은 rich 패키지에 대해 동일한 데모를 보여주는 스크린캐스트입니다.
여전히 관심이 있으시면 here is the script 해킹하십시오.
I wish this was scalable to all the programming languages but currently I don't have any clue on how to do this
If you want to contribute help me by addinggrep
patterns to do the same search for you favourite programming language. Thanks
Reference
이 문제에 관하여(Git 및 FZF를 사용하여 시간 경과에 따른 python 함수의 기록 보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bhupesh/view-a-python-functions-history-over-time-with-git-fzf-47mn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)