codecamp

37. Git 克隆仓库

目的

学习如何创建仓库的拷贝。

转到工作目录

转到工作目录并创建 hello 仓库的克隆。

$ cd ..
$ pwd
$ ls

注意:现在在工作目录中。

$ cd ..
$ pwd
/Users/jim/working/git/git_immersion/auto
$ ls
hello

此刻你应当在你的工作目录,且有名为“hello”的单一仓库。

创建 hello 仓库的克隆

让我们创建仓库的克隆。

$ git clone hello cloned_hello
$ ls
$ git clone hello cloned_hello
Cloning into cloned_hello...
done.
$ ls
cloned_hello
hello

在你的工作目录中现在应当有两个仓库:原始的“hello”仓库 和新克隆的“cloned_hello”仓库。

36. Git 多个仓库
38. Git 回顾克隆的仓库
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }