gitextract_bzuroiub/ ├── .github/ │ └── workflows/ │ ├── dynamic-readme.yml │ └── dynamic-security.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README-ES.md ├── README.md ├── SECURITY.md ├── agignore ├── aliases ├── asdfrc ├── bin/ │ ├── bundler-search │ ├── clear-port │ ├── git-ca │ ├── git-co-upstream-pr │ ├── git-create-branch │ ├── git-ctags │ ├── git-current-branch │ ├── git-delete-branch │ ├── git-merge-branch │ ├── git-rename-branch │ ├── git-trust-bin │ ├── git-up │ ├── replace │ ├── tat │ └── whats-in-port ├── ctags ├── ctags.d/ │ └── config.ctags ├── gemrc ├── git_template/ │ ├── hooks/ │ │ ├── commit-msg │ │ ├── ctags │ │ ├── post-checkout │ │ ├── post-commit │ │ ├── post-merge │ │ ├── post-rewrite │ │ ├── pre-commit │ │ ├── pre-push │ │ └── prepare-commit-msg │ └── info/ │ └── exclude ├── gitconfig ├── gitignore ├── gitmessage ├── hooks/ │ └── post-up ├── hushlogin ├── psqlrc ├── railsrc ├── rcrc ├── rspec ├── tmux.conf ├── vim/ │ ├── ftplugin/ │ │ ├── css.vim │ │ ├── gitcommit.vim │ │ ├── go.vim │ │ ├── markdown.vim │ │ ├── sass.vim │ │ └── scss.vim │ └── plugin/ │ └── ctags.vim ├── vimrc ├── vimrc.bundles ├── zprofile ├── zsh/ │ ├── completion/ │ │ ├── _ag │ │ ├── _bundler │ │ ├── _g │ │ ├── _production │ │ ├── _rspec │ │ └── _staging │ ├── configs/ │ │ ├── color.zsh │ │ ├── editor.zsh │ │ ├── fzf.zsh │ │ ├── history.zsh │ │ ├── homebrew.zsh │ │ ├── keybindings.zsh │ │ ├── options.zsh │ │ ├── post/ │ │ │ ├── completion.zsh │ │ │ └── path.zsh │ │ └── prompt.zsh │ └── functions/ │ ├── _git_delete_branch │ ├── change-extension │ ├── envup │ ├── g │ └── mcd ├── zshenv └── zshrc