赞
踩
1.git init git初始化
2.git log git log --oneline 查看提交日志
3.git log --reflog 或者 git log --oneline --reflog 查看所有的版本
4.git reset --hard 版本号 历史版本回退
5.git status 查看文件的状态 查看简略版信息加 -s
1. git branch 查看本地所有分支
2.git branch 分支名 创建新的分支
3.git checkout 分支名 切换分支
4.git branch -d 分支名 删除分支
5.git checkout -b 分支名 创建并直接切换分支名
把分支代码合并到master分支: git merge 分支名
git restore . 命令是撤销的意思,就是pull的时候,有个错误:
执行git restore . 然后在pull
1.找个地方
2.git init 这时候我这个D盘里面会生成一个.git文件
3.git clone 远程仓库地址 这时候D盘会多出来你拉取的文件
4.进入这个文件, git fetch 远程地址 release:release
git fetch 远程地址 develop:develop
5.git branch 这时候会看到三个分支
6.git checkout develop
7.git checkout -b xxxxx(在这个分支上写代码) 创建并切换到这个分支
8. git add . git commit -m " "
切换到develop分支上 git checkout develop
拉 git pull
本地的分支(develop)和远程的分支(develop)没有建立关联。
合并 git merge xxxxxx(develop下你建的分支)
推 git push
补充切换淘宝镜像
- $ npm config set registry https://registry.npm.taobao.org/ #设置淘宝镜像地址
- $ npm config get registry #查看镜像地址
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。