Git系列-3-hello world

创建仓库

init

1
2
3
4
5
6

$ mkdir learngit
$ cd learngit
$ git init
Initialized empty Git repository in /Users/shuvigoss/gitrepository/learngit/.git/

Git仓库已经创建好了,我们看下文件夹里边都有什么内容。

阅读更多

Git系列-2-Git安装

Git安装

Note:这里的安装是安装Command-Line,并非Git工具。

如果需要安装Git工具可在这里找到

阅读更多

Git系列-1-Git简介

简介

什么是Git?

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency

Git是为了快速和高效处理任何大小工程而设计的免费开源的分布式版本控制系统

阅读更多