1. Git的安装
git --version // 查看git版本
2. Git的全局配置
-
git config --global user.name '你的用户名' git config --global user.email '你的邮箱' git config --list --global // 查看效果
3. 建立Git仓库
- 把已有的项目代码纳入Git管理
cd 项目目录 git init 将项目放到git管理中
- 新建的项目直接Git管理
cd 某个文件夹 git init xxx # 会在当前路径下创建和项目名称同名的文件夹 cd xxx
4. 将文件使用Git进行管理
- git status
- git add xxx
- git commit -m 'xxx'
- git push