Tags
.NET Apache Apple Bug or Feature CircleCi cleancode dartlang development drupal Eclipse feed file comparison Gedit git Gnome HQL Hyper-V IIS integration Javascript Linux Meld Microsoft NHibernate open source performance PHP Quicktime Redmine registry Remote Desktop Safari security Server TFS 2010 twitter ubuntu UX Virtual VirtualBox web WinDiff Windows XDebug XML-
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
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.