├── .gitignore ├── README.md ├── commit ├── git-config ├── git-find-repos ├── git-generate-changes ├── git-list-branches ├── git-practice-platform ├── git-wtf ├── gitanalyzer ├── gitcatfile ├── live-findfiles ├── live-git-index ├── live-git-log ├── live-git-reflog ├── live-git-status └── live-tree /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | out/ 3 | *.iml 4 | *.swp 5 | git-kata-directory/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/README.md -------------------------------------------------------------------------------- /commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/commit -------------------------------------------------------------------------------- /git-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/git-config -------------------------------------------------------------------------------- /git-find-repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/git-find-repos -------------------------------------------------------------------------------- /git-generate-changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/git-generate-changes -------------------------------------------------------------------------------- /git-list-branches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/git-list-branches -------------------------------------------------------------------------------- /git-practice-platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/git-practice-platform -------------------------------------------------------------------------------- /git-wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/git-wtf -------------------------------------------------------------------------------- /gitanalyzer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/gitanalyzer -------------------------------------------------------------------------------- /gitcatfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/gitcatfile -------------------------------------------------------------------------------- /live-findfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/live-findfiles -------------------------------------------------------------------------------- /live-git-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/live-git-index -------------------------------------------------------------------------------- /live-git-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/live-git-log -------------------------------------------------------------------------------- /live-git-reflog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/live-git-reflog -------------------------------------------------------------------------------- /live-git-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/live-git-status -------------------------------------------------------------------------------- /live-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemiorhan/git-extras/HEAD/live-tree --------------------------------------------------------------------------------