git使用教程

一 创建环境

参考

Git 安装配置 | 菜鸟教程 (runoob.com)icon-default.png?t=N6B9https://www.runoob.com/git/git-install-setup.html

1.1 配置

$ git config --global user.name "runoob"
$ git config --global user.email [email protected]
 

1.2 创建一个新文件夹

在新的文件夹执行(相当于本地的工作目录,以后修改代码都在这里)

git init

1.3 设置连接 

参考

你可能感兴趣的:(通俗易懂技术站,git)