版本控制工具
自己玩
1. git基本使用
管理本地的文件,提交版本,版本回退
将本地代码提交到gitee上,远程保存
例如:
现在是8月27日,我想让代码恢复到8月26日上午10:00提交的那个版本中
使用步骤
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. 将缓存内的内容提交成为一个版本。
1. > git commit -m "你提交了什么东西?"
例如:
> git commit -m "提交了统计页面模块"
首次提交会出问题,告诉你无法提交,提示你应该先告诉git你是谁
> git config --global user.email "***"
> git config --global user.name "***"
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
和大家玩