gitextract_zyedj6fh/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ ├── feature-request.yml │ │ └── question.yml │ ├── dependabot.yml │ ├── stale.yml │ └── workflows/ │ ├── branches.yml │ ├── build.yml │ ├── codeql.yml │ ├── tests.yml │ └── vendor.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cmder.bat ├── LICENSE ├── README.md ├── SECURITY.md ├── bin/ │ └── Readme.md ├── config/ │ └── Readme.md ├── icons/ │ └── cmder_icon.psd ├── launcher/ │ ├── .gitignore │ ├── CmderLauncher.sln │ ├── CmderLauncher.vcxproj │ └── src/ │ ├── CmderLauncher.cpp │ ├── app.manifest │ ├── resource.h │ ├── resource.rc │ ├── strings.rc2 │ └── version.rc2.sample ├── opt/ │ └── Readme.md ├── packignore ├── scripts/ │ ├── build.ps1 │ ├── pack.ps1 │ ├── update.ps1 │ └── utils.ps1 └── vendor/ ├── ConEmu.xml.default ├── Readme.md ├── bin/ │ ├── alias.cmd │ ├── cexec.cmd │ ├── cmder_diag.cmd │ ├── cmder_diag.ps1 │ ├── cmder_diag.sh │ ├── cmder_shell.cmd │ ├── excd.cmd │ ├── timer.cmd │ ├── vscode_init.cmd │ └── vscode_init_args.cmd.default ├── clink.lua ├── clink_settings.default ├── cmder.sh ├── cmder_exinit ├── cmder_prompt_config.lua.default ├── git-prompt.sh ├── init.bat ├── lib/ │ ├── lib_base.cmd │ ├── lib_console.cmd │ ├── lib_git.cmd │ ├── lib_path.cmd │ ├── lib_profile.cmd │ └── start-ssh-agent.sh ├── profile.ps1 ├── psmodules/ │ └── Cmder.ps1 ├── sources.json ├── user_aliases.cmd.default ├── user_profile.cmd.default ├── user_profile.ps1.default └── user_profile.sh.default