Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created November 15, 2020 05:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/72e6cc6747186f06145572790e450d83 to your computer and use it in GitHub Desktop.
Save r-ryantm/72e6cc6747186f06145572790e450d83 to your computer and use it in GitHub Desktop.
/nix/store/j92rpvi3sm8q8irqhmk3apc8kj9qnfn1-git-cola-3.8
├── bin
│   ├── git-cola
│   ├── git-cola-sequence-editor
│   └── git-dag
├── lib
│   └── python3.8
│   └── site-packages
│   ├── cola
│   │   ├── actions.py
│   │   ├── app.py
│   │   ├── cmd.py
│   │   ├── cmds.py
│   │   ├── compat.py
│   │   ├── core.py
│   │   ├── dag.py
│   │   ├── decorators.py
│   │   ├── diffparse.py
│   │   ├── difftool.py
│   │   ├── fsmonitor.py
│   │   ├── gitcfg.py
│   │   ├── gitcmds.py
│   │   ├── git.py
│   │   ├── gravatar.py
│   │   ├── guicmds.py
│   │   ├── hidpi.py
│   │   ├── hotkeys.py
│   │   ├── i18n.py
│   │   ├── icons.py
│   │   ├── __init__.py
│   │   ├── inotify.py
│   │   ├── interaction.py
│   │   ├── main.py
│   │   ├── models
│   │   │   ├── browse.py
│   │   │   ├── dag.py
│   │   │   ├── __init__.py
│   │   │   ├── main.py
│   │   │   ├── prefs.py
│   │   │   ├── __pycache__
│   │   │   │   ├── browse.cpython-38.pyc
│   │   │   │   ├── dag.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── main.cpython-38.pyc
│   │   │   │   ├── prefs.cpython-38.pyc
│   │   │   │   ├── selection.cpython-38.pyc
│   │   │   │   └── stash.cpython-38.pyc
│   │   │   ├── selection.py
│   │   │   └── stash.py
│   │   ├── observable.py
│   │   ├── __pycache__
│   │   │   ├── actions.cpython-38.pyc
│   │   │   ├── app.cpython-38.pyc
│   │   │   ├── cmd.cpython-38.pyc
│   │   │   ├── cmds.cpython-38.pyc
│   │   │   ├── compat.cpython-38.pyc
│   │   │   ├── core.cpython-38.pyc
│   │   │   ├── dag.cpython-38.pyc
│   │   │   ├── decorators.cpython-38.pyc
│   │   │   ├── diffparse.cpython-38.pyc
│   │   │   ├── difftool.cpython-38.pyc
│   │   │   ├── fsmonitor.cpython-38.pyc
│   │   │   ├── gitcfg.cpython-38.pyc
│   │   │   ├── gitcmds.cpython-38.pyc
│   │   │   ├── git.cpython-38.pyc
│   │   │   ├── gravatar.cpython-38.pyc
│   │   │   ├── guicmds.cpython-38.pyc
│   │   │   ├── hidpi.cpython-38.pyc
│   │   │   ├── hotkeys.cpython-38.pyc
│   │   │   ├── i18n.cpython-38.pyc
│   │   │   ├── icons.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── inotify.cpython-38.pyc
│   │   │   ├── interaction.cpython-38.pyc
│   │   │   ├── main.cpython-38.pyc
│   │   │   ├── observable.cpython-38.pyc
│   │   │   ├── qtcompat.cpython-38.pyc
│   │   │   ├── qtutils.cpython-38.pyc
│   │   │   ├── resources.cpython-38.pyc
│   │   │   ├── settings.cpython-38.pyc
│   │   │   ├── spellcheck.cpython-38.pyc
│   │   │   ├── textwrap.cpython-38.pyc
│   │   │   ├── themes.cpython-38.pyc
│   │   │   ├── utils.cpython-38.pyc
│   │   │   ├── _version.cpython-38.pyc
│   │   │   └── version.cpython-38.pyc
│   │   ├── qtcompat.py
│   │   ├── qtutils.py
│   │   ├── resources.py
│   │   ├── settings.py
│   │   ├── spellcheck.py
│   │   ├── textwrap.py
│   │   ├── themes.py
│   │   ├── utils.py
│   │   ├── _version.py
│   │   ├── version.py
│   │   └── widgets
│   │   ├── about.py
│   │   ├── action.py
│   │   ├── archive.py
│   │   ├── bookmarks.py
│   │   ├── branch.py
│   │   ├── browse.py
│   │   ├── cfgactions.py
│   │   ├── clone.py
│   │   ├── commitmsg.py
│   │   ├── common.py
│   │   ├── compare.py
│   │   ├── completion.py
│   │   ├── createbranch.py
│   │   ├── createtag.py
│   │   ├── dag.py
│   │   ├── defs.py
│   │   ├── diff.py
│   │   ├── editremotes.py
│   │   ├── filelist.py
│   │   ├── filetree.py
│   │   ├── finder.py
│   │   ├── gitignore.py
│   │   ├── grep.py
│   │   ├── highlighter.py
│   │   ├── imageview.py
│   │   ├── __init__.py
│   │   ├── log.py
│   │   ├── main.py
│   │   ├── merge.py
│   │   ├── patch.py
│   │   ├── prefs.py
│   │   ├── __pycache__
│   │   │   ├── about.cpython-38.pyc
│   │   │   ├── action.cpython-38.pyc
│   │   │   ├── archive.cpython-38.pyc
│   │   │   ├── bookmarks.cpython-38.pyc
│   │   │   ├── branch.cpython-38.pyc
│   │   │   ├── browse.cpython-38.pyc
│   │   │   ├── cfgactions.cpython-38.pyc
│   │   │   ├── clone.cpython-38.pyc
│   │   │   ├── commitmsg.cpython-38.pyc
│   │   │   ├── common.cpython-38.pyc
│   │   │   ├── compare.cpython-38.pyc
│   │   │   ├── completion.cpython-38.pyc
│   │   │   ├── createbranch.cpython-38.pyc
│   │   │   ├── createtag.cpython-38.pyc
│   │   │   ├── dag.cpython-38.pyc
│   │   │   ├── defs.cpython-38.pyc
│   │   │   ├── diff.cpython-38.pyc
│   │   │   ├── editremotes.cpython-38.pyc
│   │   │   ├── filelist.cpython-38.pyc
│   │   │   ├── filetree.cpython-38.pyc
│   │   │   ├── finder.cpython-38.pyc
│   │   │   ├── gitignore.cpython-38.pyc
│   │   │   ├── grep.cpython-38.pyc
│   │   │   ├── highlighter.cpython-38.pyc
│   │   │   ├── imageview.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── log.cpython-38.pyc
│   │   │   ├── main.cpython-38.pyc
│   │   │   ├── merge.cpython-38.pyc
│   │   │   ├── patch.cpython-38.pyc
│   │   │   ├── prefs.cpython-38.pyc
│   │   │   ├── recent.cpython-38.pyc
│   │   │   ├── remote.cpython-38.pyc
│   │   │   ├── search.cpython-38.pyc
│   │   │   ├── selectcommits.cpython-38.pyc
│   │   │   ├── spellcheck.cpython-38.pyc
│   │   │   ├── standard.cpython-38.pyc
│   │   │   ├── startup.cpython-38.pyc
│   │   │   ├── stash.cpython-38.pyc
│   │   │   ├── status.cpython-38.pyc
│   │   │   ├── submodules.cpython-38.pyc
│   │   │   ├── text.cpython-38.pyc
│   │   │   ├── toolbarcmds.cpython-38.pyc
│   │   │   └── toolbar.cpython-38.pyc
│   │   ├── recent.py
│   │   ├── remote.py
│   │   ├── search.py
│   │   ├── selectcommits.py
│   │   ├── spellcheck.py
│   │   ├── standard.py
│   │   ├── startup.py
│   │   ├── stash.py
│   │   ├── status.py
│   │   ├── submodules.py
│   │   ├── text.py
│   │   ├── toolbarcmds.py
│   │   └── toolbar.py
│   └── git_cola-3.8.dist-info
│   ├── COPYING
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
├── applications
│   ├── git-cola.desktop
│   ├── git-cola-folder-handler.desktop
│   └── git-dag.desktop
├── doc
│   └── git-cola
│   ├── git-cola.rst
│   ├── git-dag.rst
│   ├── hotkeys_de.html
│   ├── hotkeys.html
│   ├── hotkeys_zh_CN.html
│   ├── hotkeys_zh_TW.html
│   ├── index.rst
│   ├── relnotes.rst
│   └── thanks.rst
├── git-cola
│   ├── bin
│   │   ├── ssh-askpass
│   │   └── ssh-askpass-darwin
│   ├── icons
│   │   ├── a-z-order.svg
│   │   ├── check.svg
│   │   ├── circle-slash-red.svg
│   │   ├── circle-slash.svg
│   │   ├── dark
│   │   │   ├── a-z-order.svg
│   │   │   ├── check.svg
│   │   │   ├── circle-slash-red.svg
│   │   │   ├── circle-slash.svg
│   │   │   ├── desktop-download.svg
│   │   │   ├── diff.svg
│   │   │   ├── document-save-symbolic.svg
│   │   │   ├── edit-copy.svg
│   │   │   ├── edit-select-all.svg
│   │   │   ├── edit-undo.svg
│   │   │   ├── ellipsis.svg
│   │   │   ├── eye.svg
│   │   │   ├── file-binary.svg
│   │   │   ├── file-code.svg
│   │   │   ├── file-directory.svg
│   │   │   ├── file-download.svg
│   │   │   ├── file-media.svg
│   │   │   ├── file-text.svg
│   │   │   ├── file-zip.svg
│   │   │   ├── folder-new.svg
│   │   │   ├── folder.svg
│   │   │   ├── fold.svg
│   │   │   ├── gear.svg
│   │   │   ├── git-branch.svg
│   │   │   ├── git-cola.svg
│   │   │   ├── git-commit.svg
│   │   │   ├── git-compare.svg
│   │   │   ├── git-merge.svg
│   │   │   ├── last-first-order.svg
│   │   │   ├── link-external.svg
│   │   │   ├── modified.svg
│   │   │   ├── partial.svg
│   │   │   ├── pencil.svg
│   │   │   ├── plus.svg
│   │   │   ├── primitive-dot.svg
│   │   │   ├── question-plain.svg
│   │   │   ├── question.svg
│   │   │   ├── repo-pull.svg
│   │   │   ├── repo-push.svg
│   │   │   ├── repo.svg
│   │   │   ├── screen-full.svg
│   │   │   ├── search.svg
│   │   │   ├── staged.svg
│   │   │   ├── star.svg
│   │   │   ├── sync.svg
│   │   │   ├── tag.svg
│   │   │   ├── telescope.svg
│   │   │   ├── trashcan.svg
│   │   │   ├── unfold.svg
│   │   │   ├── upstream.svg
│   │   │   ├── x.svg
│   │   │   ├── zoom-fit-best.svg
│   │   │   ├── zoom-in.svg
│   │   │   └── zoom-out.svg
│   │   ├── desktop-download.svg
│   │   ├── diff.svg
│   │   ├── document-save-symbolic.svg
│   │   ├── edit-copy.svg
│   │   ├── edit-select-all.svg
│   │   ├── edit-undo.svg
│   │   ├── ellipsis.svg
│   │   ├── eye.svg
│   │   ├── file-binary.svg
│   │   ├── file-code.svg
│   │   ├── file-directory.svg
│   │   ├── file-download.svg
│   │   ├── file-media.svg
│   │   ├── file-text.svg
│   │   ├── file-zip.svg
│   │   ├── folder-new.svg
│   │   ├── folder.svg
│   │   ├── fold.svg
│   │   ├── gear.svg
│   │   ├── git-branch.svg
│   │   ├── git-cola.svg
│   │   ├── git-commit.svg
│   │   ├── git-compare.svg
│   │   ├── git-merge.svg
│   │   ├── last-first-order.svg
│   │   ├── link-external.svg
│   │   ├── modified.svg
│   │   ├── partial.svg
│   │   ├── pencil.svg
│   │   ├── plus.svg
│   │   ├── primitive-dot.svg
│   │   ├── question-plain.svg
│   │   ├── question.svg
│   │   ├── repo-pull.svg
│   │   ├── repo-push.svg
│   │   ├── repo.svg
│   │   ├── screen-full.svg
│   │   ├── search.svg
│   │   ├── staged.svg
│   │   ├── star.svg
│   │   ├── sync.svg
│   │   ├── tag.svg
│   │   ├── telescope.svg
│   │   ├── trashcan.svg
│   │   ├── unfold.svg
│   │   ├── upstream.svg
│   │   ├── x.svg
│   │   ├── zoom-fit-best.svg
│   │   ├── zoom-in.svg
│   │   └── zoom-out.svg
│   └── lib
│   ├── cola
│   │   ├── actions.py
│   │   ├── app.py
│   │   ├── cmd.py
│   │   ├── cmds.py
│   │   ├── compat.py
│   │   ├── core.py
│   │   ├── dag.py
│   │   ├── decorators.py
│   │   ├── diffparse.py
│   │   ├── difftool.py
│   │   ├── fsmonitor.py
│   │   ├── gitcfg.py
│   │   ├── gitcmds.py
│   │   ├── git.py
│   │   ├── gravatar.py
│   │   ├── guicmds.py
│   │   ├── hidpi.py
│   │   ├── hotkeys.py
│   │   ├── i18n.py
│   │   ├── icons.py
│   │   ├── __init__.py
│   │   ├── inotify.py
│   │   ├── interaction.py
│   │   ├── main.py
│   │   ├── models
│   │   │   ├── browse.py
│   │   │   ├── dag.py
│   │   │   ├── __init__.py
│   │   │   ├── main.py
│   │   │   ├── prefs.py
│   │   │   ├── __pycache__
│   │   │   │   ├── browse.cpython-38.pyc
│   │   │   │   ├── dag.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── main.cpython-38.pyc
│   │   │   │   ├── prefs.cpython-38.pyc
│   │   │   │   ├── selection.cpython-38.pyc
│   │   │   │   └── stash.cpython-38.pyc
│   │   │   ├── selection.py
│   │   │   └── stash.py
│   │   ├── observable.py
│   │   ├── __pycache__
│   │   │   ├── actions.cpython-38.pyc
│   │   │   ├── app.cpython-38.pyc
│   │   │   ├── cmd.cpython-38.pyc
│   │   │   ├── cmds.cpython-38.pyc
│   │   │   ├── compat.cpython-38.pyc
│   │   │   ├── core.cpython-38.pyc
│   │   │   ├── dag.cpython-38.pyc
│   │   │   ├── decorators.cpython-38.pyc
│   │   │   ├── diffparse.cpython-38.pyc
│   │   │   ├── difftool.cpython-38.pyc
│   │   │   ├── fsmonitor.cpython-38.pyc
│   │   │   ├── gitcfg.cpython-38.pyc
│   │   │   ├── gitcmds.cpython-38.pyc
│   │   │   ├── git.cpython-38.pyc
│   │   │   ├── gravatar.cpython-38.pyc
│   │   │   ├── guicmds.cpython-38.pyc
│   │   │   ├── hidpi.cpython-38.pyc
│   │   │   ├── hotkeys.cpython-38.pyc
│   │   │   ├── i18n.cpython-38.pyc
│   │   │   ├── icons.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── inotify.cpython-38.pyc
│   │   │   ├── interaction.cpython-38.pyc
│   │   │   ├── main.cpython-38.pyc
│   │   │   ├── observable.cpython-38.pyc
│   │   │   ├── qtcompat.cpython-38.pyc
│   │   │   ├── qtutils.cpython-38.pyc
│   │   │   ├── resources.cpython-38.pyc
│   │   │   ├── settings.cpython-38.pyc
│   │   │   ├── spellcheck.cpython-38.pyc
│   │   │   ├── textwrap.cpython-38.pyc
│   │   │   ├── themes.cpython-38.pyc
│   │   │   ├── utils.cpython-38.pyc
│   │   │   ├── _version.cpython-38.pyc
│   │   │   └── version.cpython-38.pyc
│   │   ├── qtcompat.py
│   │   ├── qtutils.py
│   │   ├── resources.py
│   │   ├── settings.py
│   │   ├── spellcheck.py
│   │   ├── textwrap.py
│   │   ├── themes.py
│   │   ├── utils.py
│   │   ├── _version.py
│   │   ├── version.py
│   │   └── widgets
│   │   ├── about.py
│   │   ├── action.py
│   │   ├── archive.py
│   │   ├── bookmarks.py
│   │   ├── branch.py
│   │   ├── browse.py
│   │   ├── cfgactions.py
│   │   ├── clone.py
│   │   ├── commitmsg.py
│   │   ├── common.py
│   │   ├── compare.py
│   │   ├── completion.py
│   │   ├── createbranch.py
│   │   ├── createtag.py
│   │   ├── dag.py
│   │   ├── defs.py
│   │   ├── diff.py
│   │   ├── editremotes.py
│   │   ├── filelist.py
│   │   ├── filetree.py
│   │   ├── finder.py
│   │   ├── gitignore.py
│   │   ├── grep.py
│   │   ├── highlighter.py
│   │   ├── imageview.py
│   │   ├── __init__.py
│   │   ├── log.py
│   │   ├── main.py
│   │   ├── merge.py
│   │   ├── patch.py
│   │   ├── prefs.py
│   │   ├── __pycache__
│   │   │   ├── about.cpython-38.pyc
│   │   │   ├── action.cpython-38.pyc
│   │   │   ├── archive.cpython-38.pyc
│   │   │   ├── bookmarks.cpython-38.pyc
│   │   │   ├── branch.cpython-38.pyc
│   │   │   ├── browse.cpython-38.pyc
│   │   │   ├── cfgactions.cpython-38.pyc
│   │   │   ├── clone.cpython-38.pyc
│   │   │   ├── commitmsg.cpython-38.pyc
│   │   │   ├── common.cpython-38.pyc
│   │   │   ├── compare.cpython-38.pyc
│   │   │   ├── completion.cpython-38.pyc
│   │   │   ├── createbranch.cpython-38.pyc
│   │   │   ├── createtag.cpython-38.pyc
│   │   │   ├── dag.cpython-38.pyc
│   │   │   ├── defs.cpython-38.pyc
│   │   │   ├── diff.cpython-38.pyc
│   │   │   ├── editremotes.cpython-38.pyc
│   │   │   ├── filelist.cpython-38.pyc
│   │   │   ├── filetree.cpython-38.pyc
│   │   │   ├── finder.cpython-38.pyc
│   │   │   ├── gitignore.cpython-38.pyc
│   │   │   ├── grep.cpython-38.pyc
│   │   │   ├── highlighter.cpython-38.pyc
│   │   │   ├── imageview.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── log.cpython-38.pyc
│   │   │   ├── main.cpython-38.pyc
│   │   │   ├── merge.cpython-38.pyc
│   │   │   ├── patch.cpython-38.pyc
│   │   │   ├── prefs.cpython-38.pyc
│   │   │   ├── recent.cpython-38.pyc
│   │   │   ├── remote.cpython-38.pyc
│   │   │   ├── search.cpython-38.pyc
│   │   │   ├── selectcommits.cpython-38.pyc
│   │   │   ├── spellcheck.cpython-38.pyc
│   │   │   ├── standard.cpython-38.pyc
│   │   │   ├── startup.cpython-38.pyc
│   │   │   ├── stash.cpython-38.pyc
│   │   │   ├── status.cpython-38.pyc
│   │   │   ├── submodules.cpython-38.pyc
│   │   │   ├── text.cpython-38.pyc
│   │   │   ├── toolbarcmds.cpython-38.pyc
│   │   │   └── toolbar.cpython-38.pyc
│   │   ├── recent.py
│   │   ├── remote.py
│   │   ├── search.py
│   │   ├── selectcommits.py
│   │   ├── spellcheck.py
│   │   ├── standard.py
│   │   ├── startup.py
│   │   ├── stash.py
│   │   ├── status.py
│   │   ├── submodules.py
│   │   ├── text.py
│   │   ├── toolbarcmds.py
│   │   └── toolbar.py
│   └── qtpy
│   ├── compat.py
│   ├── __init__.py
│   ├── _patch
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── qcombobox.cpython-38.pyc
│   │   │   └── qheaderview.cpython-38.pyc
│   │   ├── qcombobox.py
│   │   └── qheaderview.py
│   ├── py3compat.py
│   ├── __pycache__
│   │   ├── compat.cpython-38.pyc
│   │   ├── __init__.cpython-38.pyc
│   │   ├── py3compat.cpython-38.pyc
│   │   ├── Qt3DAnimation.cpython-38.pyc
│   │   ├── Qt3DCore.cpython-38.pyc
│   │   ├── Qt3DExtras.cpython-38.pyc
│   │   ├── Qt3DInput.cpython-38.pyc
│   │   ├── Qt3DLogic.cpython-38.pyc
│   │   ├── Qt3DRender.cpython-38.pyc
│   │   ├── QtCharts.cpython-38.pyc
│   │   ├── QtCore.cpython-38.pyc
│   │   ├── QtDatavisualization.cpython-38.pyc
│   │   ├── QtDesigner.cpython-38.pyc
│   │   ├── QtGui.cpython-38.pyc
│   │   ├── QtHelp.cpython-38.pyc
│   │   ├── QtLocation.cpython-38.pyc
│   │   ├── QtMultimedia.cpython-38.pyc
│   │   ├── QtMultimediaWidgets.cpython-38.pyc
│   │   ├── QtNetwork.cpython-38.pyc
│   │   ├── QtOpenGL.cpython-38.pyc
│   │   ├── QtPrintSupport.cpython-38.pyc
│   │   ├── QtQml.cpython-38.pyc
│   │   ├── QtQuick.cpython-38.pyc
│   │   ├── QtQuickWidgets.cpython-38.pyc
│   │   ├── QtSql.cpython-38.pyc
│   │   ├── QtSvg.cpython-38.pyc
│   │   ├── QtTest.cpython-38.pyc
│   │   ├── QtWebChannel.cpython-38.pyc
│   │   ├── QtWebEngineWidgets.cpython-38.pyc
│   │   ├── QtWebSockets.cpython-38.pyc
│   │   ├── QtWidgets.cpython-38.pyc
│   │   ├── QtXmlPatterns.cpython-38.pyc
│   │   ├── uic.cpython-38.pyc
│   │   └── _version.cpython-38.pyc
│   ├── Qt3DAnimation.py
│   ├── Qt3DCore.py
│   ├── Qt3DExtras.py
│   ├── Qt3DInput.py
│   ├── Qt3DLogic.py
│   ├── Qt3DRender.py
│   ├── QtCharts.py
│   ├── QtCore.py
│   ├── QtDatavisualization.py
│   ├── QtDesigner.py
│   ├── QtGui.py
│   ├── QtHelp.py
│   ├── QtLocation.py
│   ├── QtMultimedia.py
│   ├── QtMultimediaWidgets.py
│   ├── QtNetwork.py
│   ├── QtOpenGL.py
│   ├── QtPrintSupport.py
│   ├── QtQml.py
│   ├── QtQuick.py
│   ├── QtQuickWidgets.py
│   ├── QtSql.py
│   ├── QtSvg.py
│   ├── QtTest.py
│   ├── QtWebChannel.py
│   ├── QtWebEngineWidgets.py
│   ├── QtWebSockets.py
│   ├── QtWidgets.py
│   ├── QtXmlPatterns.py
│   ├── uic.py
│   └── _version.py
└── metainfo
├── git-cola.appdata.xml
└── git-dag.appdata.xml
32 directories, 554 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment