Skip to content

Commit d9f041d

Browse files
committed
Update stage description for git init command implementation details.
1 parent 4b97eb4 commit d9f041d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

stage_descriptions/base-01-gg4.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
In this stage, you'll implement the `git init` command.
1+
All the data for a Git repository — from its commit history to its configuration — lives inside a hidden folder called `.git`. It’s created when you initialize a new repository with `git init`. In this stage, you’ll implement that command yourself.
2+
3+
<!--
24
35
### The `git init` command
46
@@ -77,4 +79,6 @@ $ cat .git/HEAD
7779
that are absolutely necessary for Git to function properly.
7880
- The `.git/HEAD` file has a newline at the end.
7981
- The `.git/HEAD` file can contain either `ref: refs/heads/main\n` or `ref: refs/heads/master\n`, the tester will
80-
work with either of these.
82+
work with either of these.
83+
84+
-->

0 commit comments

Comments
 (0)