跳至主要內容
git的基本使用

git的基本使用

由来

git

要不说人家是大佬呢,一言不合就自己写一个👍

安装

下载对应操作系统的 Git 客户端版本 https://git-scm.com/downloads

Linux

centos上安装

$ yum install git

Clay大约 13 分钟Git
Commit message 和 Change log 编写指南

Commit message 和 Change log 编写指南

Git 每次提交代码,都要写 Commit message(提交说明),否则就不允许提交。

$ git commit -m "hello world"

Clay大约 5 分钟Git