Rahul
Rahul

Reputation: 47116

how to make initial configurations in git

I have joined a private repository for project sharing using git. What are the initial configuration I have to make locally( like username, pwd) to connect to the repository? How am i supposed to connect my local git with the repository? The repository provided me with the following git link git@<domain>:<username>/<project>.git

Upvotes: 0

Views: 76

Answers (1)

cpjolicoeur
cpjolicoeur

Reputation: 13106

to download the repository locally just do:

git clone git@<domain>:<username>/<project>.git

I'd also recommend spending some time at the following git site to learn the basics: http://gitimmersion.com/

Upvotes: 1

Related Questions