
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
git-commander
Advanced tools
A git tool with an easy terminal interface.
$ npm install -g git-commander
$ git-commander
We have two key sets vi and mc preconfigured. The default one is vi.
You will need to place a file at ~/.config/git-commander/config.json
with the following content:
{
"keySet": "mc"
}
You also can redefine keys one by one if you would like. You'll need to extend your ~/.config/git-commander/config.json
file with a key called keys
and put all your key definitions there. For example if you would like to use the mc key set and make key x quit the application, you'll need to add the following:
{
"keySet": "mc",
"keys": {
"common": {
"quit": [
"x"
]
}
}
}
You can find default settings here.
ANSI color codes are being displayed if you set "always" for color settings in your .gitconfig. For fixing this, set "auto" for color settings like below.
[color]
# diff = always
diff = auto
status = auto
ui = auto
branch = auto
If you use non-ascii character for source files, You need to disable the core.quotepath option using following command:
$ git config --global core.quotepath false
MIT
FAQs
A git tool with an easy terminal interface.
The npm package git-commander receives a total of 34 weekly downloads. As such, git-commander popularity was classified as not popular.
We found that git-commander demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.