git commit --amend git push origin master --force
git基本操作
(1)克隆
git clone 仓库地址.git
(2)修改用户名:
git config --global user.name ‘你的git名称’
(3)修改邮箱:
git config --global user,email ‘你github登录的邮箱地址’
(4)把工作区的内容上传到暂存区:
git add * / git add . /git add 文件名字
git commit -m ‘first commit’ 这一次提交的描述信息
$ rm -rf ./git/hooks/pre-commit 万一不符合规范
git commit --no-verify -m '新增底部tabbar'
(5)将代码提交到远程仓库
git push
(6)将当前项目版本更新到最新版本
git pull
(7)查看暂存区和工作区的状态:
git status
(8)查看工作区和暂存区文件的变化:
git diff
(9)查看历史版本:
git log
(10)版本回滚
git reset --hard HEAD^ (回滚到上一个版本)
git reset --hard HEAD^^(回滚到上上个版本)
git reset --hard 版本号 (回滚指定版本)
(11)创建分支
git branch (branchname)
(12)列出分支
git branch
(13)切换分支
git checkout branchname
(14)创建并切换分支
git branch (branchname) -b
(15)主分支合并子分支
git checkout master
git merge home-swiper
git push
(16)子分支拉取主分支代码
git pull origin master
(17)合并分支
git branch -d (branchname)
部分来自: https://blog.csdn.net/a18563862293/article/details/102205703