...

/

Git Kata 6: Remote Repositories

Git Kata 6: Remote Repositories

Learn how to create and add remote repositories and push commits to the repository.

The Git katas have, thus far, worked with a local repository. Git has a rich feature set that allows repositories to send and retrieve commits to and from each other, sharing the entire commit history of one repository with an infinite number of other repositories. This kata will demonstrate the steps necessary to connect a local repository to a remote repository.

Step 1: Initialize a new repository

The command to change the directory and list all the files is given below.

Press + to interact
cd /home/devops/dk/web-storelist
ls -A

Commands

Command / Parameter

Description

cd /home/devops/dk/web-storelist

This changes to the web-storelist directory.

ls -A

This lists all the files, including the hidden files and directories.

The web-storelist directory holds an HTML-formatted version of storelist.txt. This will be the content used to publish the grocery list to the web. The ls -A command shows that there’s no hidden .git directory. The web-storelist directory isn’t yet a Git repository.

The command to initialize a new repository is given below:

Press + to interact
git init

Command's Parameter

Command / Parameter

Description

init

This initializes a new repository.

The git init command creates a new repository in web-storelist.

The commands for repository configuration are given below.

Press + to interact
git config user.email devops@devopskatas.com
git config user.name devops

Command's Parameters

Command / Parameter

Description

config

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

user.name | user.email

These values set the user name and email identity associated with one or more repositories.

The git config command is used in this step to set the identity for ...