We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1f7526 commit 30e2f12Copy full SHA for 30e2f12
.devcontainer/Dockerfile
@@ -8,6 +8,11 @@ SHELL ["/bin/bash", "-c"]
8
RUN apt-get update && \
9
apt-get install -y git
10
11
+# Configure Git aliases
12
+RUN git config --global alias.undo "reset --soft HEAD^" && \
13
+ git config --global alias.graph "log --all --graph --decorate --oneline" && \
14
+ git config --global alias.i "init"
15
+
16
# Install .NET SDK
17
18
apt-get install -y wget apt-transport-https && \
0 commit comments