First, create the directory where the new repositorty will be created, then create a bare Git repository.
1 2 3 4 5 | $ cd /n/Home $ mkdir Demo.git $ cd Demo.git/ $ git init --bare Initialized empty Git repository in n: /Home/Demo .git/ |
backup
, you might want to name it origin
if you don't have any remote repositories yet or potentially something more descriptive if you already have an origin remote repository.1 2 | $ cd /c/TFS/Demo/ $ git remote add backup /n/Home/Demo .git/ |
backup
remote was added to the local repository.1 2 | $ git remote backup |
backup
remote repository.1 2 3 4 5 6 7 8 | $ git push backup master Counting objects: 390, done . Delta compression using up to 4 threads. Compressing objects: 100% (378 /378 ), done . Writing objects: 100% (390 /390 ), 4.56 MiB | 4.87 MiB /s , done . Total 390 (delta 255), reused 0 (delta 0) To n: /Home/Demo .git * [new branch] master -> master |