在本地项目文件中使用bash
$ git config --global user.name "你的名字"
$ git config --global user.email "你的邮箱"
1. 初始化
$ git init
$ git remote add origin https://gitee.com/xxx/xxx.git (你的远程项目地址)
2.克隆一下
$ git clone https://****.git (你的远程项目地址)
3. 提交
$ git pull origin master
$ git add .
$ git commit -m "你的第一次提交"
$ git push origin master
本文介绍了如何在本地项目中使用Git进行版本控制的基本操作,包括配置用户信息、初始化项目、克隆远程仓库、提交更改及推送至远程仓库等步骤。
713

被折叠的 条评论
为什么被折叠?



