Tag Archives: git

Git – setup tracking properly

OK, there are a number of ways to setup tracking remote branches with git. We need that so we can use push and pull commands without long explaining what to push/pull where… I’d say that normally all we mortals need … Continue reading

Posted in Software Development, Tools | Tagged | Leave a comment

Git – how to remove remote branch

Seemingly obvious action got me more than once. git push origin :branchname is the way to go. Of course, I’ve expected something like: git branch -d origin/branchname but it wouldn’t work.

Posted in Software Development, Tools | Tagged | Leave a comment