Git Kata 1: New Local Repository
Learn to create a new repository, add files, and commit changes.
Step 1: Initialize a new repository
Open a new terminal window. The command to edit and list files is given below.
cd ~/dk/storelistnano storelist.txtls
The result will be something like this:
Commands
Command / Parameter | Description |
| This changes the current working directory to the |
| This opens the |
| This lists the files in the |
The first command group changes to the dk/storelist
directory, opens storelist.txt
in the text editor, and lists the files in dk/storelist
. The only file in the dk/storelist
directory is storelist.txt
.
Leave the text editor open. We’ll be switching back and forth between the terminal and the editor to view and make changes to storelist.txt
.
The command to initiate the new repository is given below.
git init
When we run the command above, the result will be something like this:
Command
Command / Parameter | Description |
| This initializes a new Git repository in the current directory. |
The git init
command does one thing only: it initializes the repository by creating the hidden .git
directory. A Git repository consists of the .git
directory and the files and sub-directories of the repository directory, dk/storelist
. The repository directory and its subdirectories are the working directory, also known as the working tree. Files that are tracked by the repository are stored and edited in the working directory.
The command to set email and username for the local repository is given below.
git config user.email 'devops@katas.com'git config user.name 'devops'
The output will be something like this:
Command's Parameters
Command / Parameter | Description |
| This sets a configuration value that affects the behavior of the Git program. |
| These values set the username and email identity associated with the local repository. |
The next two commands use config
to set the username and email address for the local repository. These values are stored in files under the .git
directory. Git associates an identity with changes as they’re saved to the version history. If no identity is set, commands to record changes, called commits, to a repository index will return an error.
The command to list files is given below.
ls -Als .git
After executing the command above, the output will be something like this:
Commands
Command / Parameter | Description |
| This lists all the files, including the hidden files. |
| This lists the contents of the |
The ls
command is used with the -A
parameter to show all the files. This displays the hidden .git
directory in dk/storelist
. The ls .git
command ...