Saturday, October 24, 2015

VISUAL STUDIO GIT


If you want to delete a branch Follow the below steps to delete it

First install git extensions.
1 First we need to know on which branch it is created(A,B,C,MAIN.....
 )

2 Than go to that particular branch  




3 Go to Visual Studio (
Git  ->Git Bash)
     

           
Git: Delete a branch (local or remote)
To delete a local branch
git branch -d the_local_branch
To remove a remote branch (if you know what you are doing!)
git push origin :the_remote_branch

       
Than type the below command 

git push origin: branch name
Example : git push origin :<BranchName>




No comments:

Post a Comment

Thank you for visiting my blog

Kubernetes

Prerequisites We assume anyone who wants to understand Kubernetes should have an understating of how the Docker works, how the Docker images...