...

/

Git Kata 1: New Local Repository

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.

Press + to interact
cd ~/dk/storelist
nano storelist.txt
ls

The result will be something like this:

Commands

Command / Parameter

Description

cd ~/dk/storelist

This changes the current working directory to the dk/storelist directory.

nano storelist

This opens the storelist.txt file in the default text editor, nano.

ls

This lists the files in the dk/storelist directory.

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.

Press + to interact
git init

When we run the command above, the result will be something like this:

Command

Command / Parameter

Description

git init

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.

Press + to interact
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

config

This sets a configuration value that affects the behavior of the Git program.

user.email | user.name

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.

Press + to interact
ls -A
ls .git

After executing the command above, the output will be something like this:

Commands

Command / Parameter

Description

ls -A

This lists all the files, including the hidden files.

ls .git

This lists the contents of the .git repository.

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 ...