标签:
我们先来简单熟悉一下 git 的简单使用的指令, 作为最基本的 git 指令一定要熟悉
1
|
克隆代码:
|
1
|
git config --global user.name “CairoLee”
|
1
|
git clone 代码库地址 文件夹名称
|
比如:
1
|
git clone https://git.bandfuntech/xxx/x.git 目录名
|
使用: git commit 来提交到仓库
若想带上提交描述,可用 git commit -m ‘添加6666.txt 文件’
注意-m命令后面只能是单引号,不能是双引号
标签:
原文地址:http://www.cnblogs.com/SensenCoder/p/5134599.html