git-eq 1.0.2

A git command to quickly save your local changes in case of earthquake !
Documentation
{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'git-eq'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=git-eq",
                    "--package=git-eq"
                ],
                "filter": {
                    "name": "git-eq",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'git-eq'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=git-eq",
                    "--package=git-eq"
                ],
                "filter": {
                    "name": "git-eq",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}