有時候clone會出現以下訊息:
$git clone git@gitserver:ProjectName
fatal: destination path ‘project’ already exists and is not an empty directory.
解決方法:
$git init
$git remote add origin git@gitserver:ProjectName
$git pull
不挑戰記憶力的技術筆記
有時候clone會出現以下訊息:
$git clone git@gitserver:ProjectName
fatal: destination path ‘project’ already exists and is not an empty directory.
解決方法:
$git init
$git remote add origin git@gitserver:ProjectName
$git pull