mhmdelbaz4 / git-lab2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

● Tell me how to remove them locally and remotly.

locally

    git branch -d test
    git branch -d dev

remote

    git push origin --delete test
    git push origin --delete dev  

● tell me how to list tags locally.

    git tag

● tell me how to delete tag locally and remotely.

locally

    git tag -d v1.0

remote

    git push origin --delete v1.0

image

image

About