From 7292e0625e9dec1a956a9228348710b48dad33b4 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Tue, 1 Apr 2025 15:06:21 +0200 Subject: [PATCH] formatting --- data/git/basics.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/data/git/basics.md b/data/git/basics.md index fc27897..ca89a5a 100644 --- a/data/git/basics.md +++ b/data/git/basics.md @@ -26,15 +26,10 @@ mkdir $DIR && cd $DIR git init ``` -Make a file explaining what the project does: - -```bash -vim README.md -``` - -Add this to the git: +Make a file explaining what the project does, and tell `git` to track it: ```bash +echo "I hereby solemnly swear never to commit a binary." > README.md git add README.md ```