├── .gitignore ├── .mailmap ├── COPYING ├── INSTALL ├── Makefile ├── README ├── contrib └── tg-completion.bash ├── create-help.sh ├── hooks └── pre-commit.sh ├── leaves.awk ├── tg-annihilate.sh ├── tg-base.sh ├── tg-checkout.sh ├── tg-create.sh ├── tg-delete.sh ├── tg-depend.sh ├── tg-export.sh ├── tg-files.sh ├── tg-import.sh ├── tg-info.sh ├── tg-log.sh ├── tg-mail.sh ├── tg-next.sh ├── tg-patch.sh ├── tg-prev.sh ├── tg-push.sh ├── tg-remote.sh ├── tg-summary.sh ├── tg-update.sh └── tg.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/.mailmap -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/README -------------------------------------------------------------------------------- /contrib/tg-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/contrib/tg-completion.bash -------------------------------------------------------------------------------- /create-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/create-help.sh -------------------------------------------------------------------------------- /hooks/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/hooks/pre-commit.sh -------------------------------------------------------------------------------- /leaves.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/leaves.awk -------------------------------------------------------------------------------- /tg-annihilate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-annihilate.sh -------------------------------------------------------------------------------- /tg-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-base.sh -------------------------------------------------------------------------------- /tg-checkout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-checkout.sh -------------------------------------------------------------------------------- /tg-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-create.sh -------------------------------------------------------------------------------- /tg-delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-delete.sh -------------------------------------------------------------------------------- /tg-depend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-depend.sh -------------------------------------------------------------------------------- /tg-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-export.sh -------------------------------------------------------------------------------- /tg-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-files.sh -------------------------------------------------------------------------------- /tg-import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-import.sh -------------------------------------------------------------------------------- /tg-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-info.sh -------------------------------------------------------------------------------- /tg-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-log.sh -------------------------------------------------------------------------------- /tg-mail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-mail.sh -------------------------------------------------------------------------------- /tg-next.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-next.sh -------------------------------------------------------------------------------- /tg-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-patch.sh -------------------------------------------------------------------------------- /tg-prev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-prev.sh -------------------------------------------------------------------------------- /tg-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-push.sh -------------------------------------------------------------------------------- /tg-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-remote.sh -------------------------------------------------------------------------------- /tg-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-summary.sh -------------------------------------------------------------------------------- /tg-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg-update.sh -------------------------------------------------------------------------------- /tg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenrd/topgit/HEAD/tg.sh --------------------------------------------------------------------------------