gitpp 0.7.2

Git Personal Parallel Manager — manage 100+ Git repos with one command
{
    // IntelliSense を使用して利用可能な属性を学べます。
    // 既存の属性の説明をホバーして表示します。
    // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'gitpp'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=gitpp",
                    "--package=gitpp"
                ],
                "filter": {
                    "name": "gitpp",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'gitpp'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=gitpp",
                    "--package=gitpp"
                ],
                "filter": {
                    "name": "gitpp",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}