From fd04f4024f98dc57224d0bf7ce59375b92351fbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Sat, 30 Dec 2023 03:35:09 +0000 Subject: [PATCH] add git-flow and git-graph --- .devcontainer/devcontainer.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6f2d5d4..a6000b3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,7 +7,10 @@ // Features to add to the dev container. More info: https://containers.dev/features. "features": { - "ghcr.io/devcontainers/features/git-lfs:1": {} + "ghcr.io/devcontainers/features/git-lfs:1": {}, + "ghcr.io/rocker-org/devcontainer-features/apt-packages:1": { + "packages": "git-flow" + } }, // Use 'forwardPorts' to make a list of ports inside the container available locally. @@ -21,7 +24,8 @@ "customizations": { "vscode": { "extensions": [ - "esbenp.prettier-vscode" + "esbenp.prettier-vscode", + "mhutchie.git-graph" ] } }