Skip to content

git

Empty Repositories

Create Our First Local Git Repository Step-1: Use git init command to initialize a location as git repository: $ mkdir gittest $ cd gittest $ git init Initialized empty Git repository in /home/ubuntu/gittest/.git/ $ cd .git $ ls -l total… Read More »Empty Repositories