Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 242 Bytes

git.md

File metadata and controls

15 lines (9 loc) · 242 Bytes

Point branch develop to HEAD of HEAD of master branch

git checkout -B develop master git push -f

Pull after forced push

git fetch origin git reset --hard origin/develop

Delete branch

git branch -d v60 git push --delete origin v60