Git Delete Merged Branches As a part of standard development practice in GIT, we work on feature branches to push changes into the repository and merge it when the changes are tested and approved. The old unwanted to branches keep building up over a period of time if they...
Articles with the Tag git
GIT: Find remote URL
GIT: Find remote URL A short article to find remote URL where the GIT repository is cloned from. There are several methods with which we can find remote URL for the existing GIT repository. Let’s check them all out. GIT: Find remote URL We can use the git-remote command...
GIT: Working with Branches in git
GIT: Working with Branches in git There are many things to mention about branch in Git, however I will document just a few minimal details related to working with branch in Git. The basic commit operation performed on a Git repository is on a single branch. In terms of...
GIT Clone a branch
GIT Clone a branch You might find a need some time to clone a certain branch of a repository instead of the entire repository. The following should be able to do the trick for you. GIT Clone a branch # git clone -b BRANCH_NAME REPOSITORY_PATH So, we will...
GIT – List Remote Branches
GIT – List Remote Branches While working in a version control system is a normal to use branches. It actually is a good practice to work on a code by creating a branch with several different people can work on their branch without actually disturbing the actual code used...