Showing posts with label versioning. Show all posts
Showing posts with label versioning. Show all posts

September 5, 2012

[SOLVED]Pull new updates for forked Github repository

Just run this in your forked git location:
$ cd github-services
$ git remote add upstream git://github.com/<user>/<repository>.git
$ git fetch upstream

Sourcehttp://stackoverflow.com/questions/3903817/pull-new-updates-for-forked-github-repository

February 18, 2011

[SOLVED] SVN: Parse all changes by user in defined time period

Parse all changes by user in defined time period
svn log -v -r{"2011-01-01 00:00:00"}:{"2011-02-18 00:00:00"}| sed -n '/m.kupriyanov/,/-----$/ p'

Source: stackoverflow.com