date: 2018-7-23 09:50:47+00:00 layout: post title: ‘git delete’ categories: 技术 tags: git —
git delete
git push –delete
Merge all commits in one branch into one commit
git checkout -b feature/100
do work ...
commit
git push ...
commit
git push ...
test pass
git checkout dev
git pull
git checkout feature/100
git merge dev
git push
git checkout dev
git merge --squash feature/100
git push