How to install .git file

gitsoftware installation

I apt-get install git-core.

I'm trying to install websocketcpp here https://github.com/zaphoyd/websocketpp.

I wget https://github.com/zaphoyd/websocketpp.git.

I have no idea what to do next.

(I've read https://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide and http://www.thegeekstuff.com/2011/08/git-install-configure/, but I'm obviously missing something)

Best Answer

What you actually want to do is clone the repository. Here is an example:

git clone https://github.com/zaphoyd/websocketpp.git
Related Question