基本操作

Git之`Hello, World`

落爺英雄遲暮 提交于 2020-03-05 21:36:55
前提条件 你必须在你的操作系统安装git,如果没有的话,那请自行google:-) 懂得命令行的基本使用 那么,下面我们开始git的hello world之旅吧! 新建git repository $ mkdir ~/public_html $ cd ~/public_html $ echo 'My website is alive!' > index.html $ git init Initialized empty Git repository in /Users/longkai/public_html/.git/ 执行后生成的隐藏.git/目录就是git维护的你的这个repository的整个版本库 你的pulic_html/被称为 工作目录 向git repository中添加文件 使用git add (file|files|dirs)向repository中添加文件 一次可以添加一个或者多个文件,也可以添加一个目录 $ git add index.html 命令执行成功后,git知道了index.html将要保留在repository中,但是git只是把index.html暂存了起来,作为在下一次提交之前的一个临时动作。 git将add和commit划分为两个过程是为了保持repository的稳定性,深思熟虑后的提交不至于repository太乱:-) 接下来执行git