配置git环境

1.首先要配置本地ssh秘钥。

   远程仓库中添加已经生成好的 ssh秘钥。

   廖雪峰git学习网站—>远程仓库目录中有详细步骤. https://www.liaoxuefeng.com

2.安装oh-my-zsh。第三方控件,很好用。需要先安装homebrew。

   https://waythought.github.io

3.从远程仓库clone。git clone +远程仓库地址

   创建远程仓库dev分支到本地。 git checkout -b dev origin/dev

   创建自己的分支 dev_add,进行开发

4.运行项目会报错,还需要安装mogenerator 。还不知道mogenerator 是什么?


安装完成,对git进行设置:

$ git config --global user.name "Your Name"

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

你可能感兴趣的:(配置git环境)