Difference between revisions of "Git development"

From relax wiki
Jump to navigation Jump to search
Line 14: Line 14:
 
== How to ==
 
== How to ==
  
This can be solved by using Git. See here for [[Git_installation | Git installation]].
+
This can be solved by using Git. See here for: [[Git_installation | Git installation]].
  
 
An working example can bee seen here at: [[Git_asynchronous_development|Git asynchronous development]]
 
An working example can bee seen here at: [[Git_asynchronous_development|Git asynchronous development]]
Line 20: Line 20:
 
How to create SVN compatible pathches in Git, can be see here: [[Git_patch|Git patch]].
 
How to create SVN compatible pathches in Git, can be see here: [[Git_patch|Git patch]].
  
How to setup your development Git branch, is explained here [[Git_svn|Git svn]].
+
How to setup your development Git branch, is explained here: [[Git_svn|Git svn]].
  
 
== Suggested faster development, keeping infrastructure ==
 
== Suggested faster development, keeping infrastructure ==

Revision as of 23:29, 23 July 2013

Motivation

Subversion needs an online repository, to store each commits. Subsequent calls to svn diff > patch will generate the difference according to the last revision. Therefore the development at the moment, require to

  1. make some lines of code
  2. make a path file and a commit message
  3. use the support tracker to upload patch and commit message
  4. wait for acceptance
  5. wait for commit to official repository
  6. then do an svn update
  7. then return to point 1

This takes time, and require that repository maintainer is online.
If the above scheme is not followed, the patch files will come out of sync.

How to

This can be solved by using Git. See here for: Git installation.

An working example can bee seen here at: Git asynchronous development

How to create SVN compatible pathches in Git, can be see here: Git patch.

How to setup your development Git branch, is explained here: Git svn.

Suggested faster development, keeping infrastructure

Suggested faster development, keeping infrastructure

See also