mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2025-11-08 14:01:35 +00:00
docs(git): rework the way we delete a branch
This commit is contained in:
@@ -12,7 +12,7 @@ git branch my-branch # creates my-branch
|
|||||||
git branch -d my-branch # deletes my-branch
|
git branch -d my-branch # deletes my-branch
|
||||||
git checkout my-bracnch # switches to my-branch
|
git checkout my-bracnch # switches to my-branch
|
||||||
git merge my-branch # merges my-branch to current branch
|
git merge my-branch # merges my-branch to current branch
|
||||||
git push origin :my-branch # delete remote branch
|
git push origin --delete my-branch # delete remote branch
|
||||||
|
|
||||||
git cherry-pick <commit_id> # merge the specified commit
|
git cherry-pick <commit_id> # merge the specified commit
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user