git的简单运用

tech2024-12-12  5

git-- 版本控制工具

自己玩 1. git基本使用 管理本地的文件,提交版本,版本回退 将本地代码提交到gitee上,远程保存 例如: 现在是8月27日,我想让代码恢复到8月26日上午10:00提交的那个版本中 8月25日上午10:00 地图 smart1 8月25日上午18:00 图表 smart2 8月26日上午10:00 布局 smart3 8月26日上午17:00 地图 smart4 8月27日上午16:00 交互 smart5 使用步骤 1. 从dos中进入到项目中去 c:/users/charles > d: d: > d: > cd briup d:/briup > cd smart d:/briup/smart > 2. 查看git仓库 > git status 3. 将当前项目文件初始化为仓库 如果当前文件夹不是git仓库,我们再初始化,如果已经是仓库,无需初始化 > git init 执行完毕后当前仓库中就出现了.git的隐藏文件夹 4. 将修改/新增文件加入到git缓存 > git add * 将所有的文件加入到git缓存中,隐藏文件默认不加 注意:检查.gitignore有没有被加入缓存,如果没有,一定强制加入,否则后患无穷 5. 将缓存内的内容提交成为一个版本。 > git commit -m "你提交了什么东西?" 例如: > git commit -m "提交了统计页面模块" 首次提交会出问题,告诉你无法提交,提示你应该先告诉git你是谁 > git config --global user.email "licy@briup.com" > git config --global user.name "plusyu" 2. gitee的使用 1. 新建远程仓库 2. 将本地仓库与远程仓库绑定 一个本地仓库只能与一个远程仓库进行绑定,只需要绑定 > git remote add origin https://gitee.com/plusyu/shixun_hdjd_test.git 3. 将本地仓库提交到远程 > git push origin master 3. 开发过程 完成阶段性任务后 > git add * > git commit -m "" > git push origin master 和大家玩 1. 初始化项目 vue-element-admin 自定义 路由 2. 进行分工 3. 将项目上传到gitee上,并且将仓库地址告诉给组员 > git init > git add * > git commit -m "初始化" > git remote add origin 地址 > git push origin master 告诉组员:我提交了代码,仓库地址为https://gitee.com/plusyu/visual-ui.git 并且将组员添加到协作者中 1. 克隆项目 > git clone https://gitee.com/plusyu/visual-ui.git 2. 完善自己代码,当别人有提交的时候自己要更新 > git add * > git commit -m ""; > git pull origin master > git push origin master
最新回复(0)