Git 配置及使用
Git 配置及使用
配置用户信息
$ git config --global user.name "zhangsan"
$ git config --global user.email 123456@qq.com
将name和email 替换为自己的信息
克隆一个已创建的仓库
$ git clone https://gitee.com/Jruing/vue_study.git
创建一个本地仓库
md study # 创建文件夹 study
cd study # 进入study文件夹
git init # 初始化
本文来自博客园,作者:Jruing,转载请注明原文链接:https://www.cnblogs.com/jruing/p/14523744.html