What does the dot after the git clone command do?

git

Solution

It checks the project out in the current directory. That is what `.` in general means.

Problem

``` $ git clone git@codebasehq.com:company/projectname/project.git . ``` whats that `.` do if you run command like that ?

Original source