Loading...

Git Tutorial

Adding a remote repository in git

Lets  add a bare repo as a remote to our original repo.

Let’s add the hello.git repository to our original repository.

RUN:

cd hello
git remote add shared ../hello.git

NOTE: We are now in the hello repo.