Showing posts with label remote. Show all posts
Showing posts with label remote. Show all posts

Monday, March 15, 2010

Play remote media files over ssh using mplayer


ssh username@192.168.1.60 "cat ~/Video/apprentice.avi" | mplayer -

Friday, November 20, 2009

Delete remote tracking branch in git


# Show remote branches tracked
git branch -r

# Delete one by one
git branch -d -r origin/branch

# Delete with one swoop
git remote prune origin