Welcome to my blog, hope you enjoy reading
RSS
Showing posts with label SVN. Show all posts
Showing posts with label SVN. Show all posts

Saturday, 3 August 2013

What svn revision was this branch created in?

What svn revision was this branch created in?

how do I find out in which svn revision a branch was created?

The answer is 
svn command: to show all the log from creating the branch.

svn log --stop-on-copy  url (url of the branch).

Share

Friday, 28 June 2013

Eclipse to Merge Branch into Trunk

Eclipse to Merge Branch into Trunk

If the changes of branch project is merge to trunk then do the following steps in eclipse
  1. Find the revision number of the last merge 
    1. how to find the log of branch?
  2. Check out a copy of the trunk as, say, openmrs-trunk:
Share

Monday, 18 February 2013

Use SVN externals to Simplify Working with Multiple Projects

Use SVN externals to Simplify Working with Multiple Projects


The SVN externals feature is one of the most useful but underutilized feature of SVN.
Many projects require assets that already exist in other repositories, and handling linking to these assets often leads to messy and confusing project structures.
There are three approaches to include linked assets:

Share