Difference between revisions of "Repository work flow structure"

From OpenEMR Project Wiki
(40 intermediate revisions by the same user not shown)
Line 3: Line 3:


==Overview==
==Overview==
Our main official repository is kept on sourceforge via git. We migrated from cvs to git on 10/30/2010, which is described on the  [[Git_Migration|git migration wiki page]]. Our sourceforge repository also has seven official mirrors, which are described below. The proper way for individual developers to set up their personal git repository is described on the [[Git_for_dummies|git for OpenEMR tutorial wiki page]]. To avoid breaking the main sourceforge git repository, we are using the following git repository structure, work flow and development structure:
Our main official repository is kept on github. We migrated from cvs to git on 10/30/2010, which is described on the  [[Git_Migration|git migration wiki page]]. We then migrated the repository from sourceforge to GitHub on 8/31/2016. Our GitHub repository also has several official mirrors, which are described below. The proper way for individual developers to set up their personal git repository is described on the [[Git_for_dummies|git for OpenEMR tutorial wiki page]]. To avoid breaking the main GitHub git repository, we are using the following git repository structure, work flow and development structure:


==Official git Main Repository==
==Official git Main Repository==
===GitHub===
:* repository link: git://github.com/openemr/openemr.git
:* web page link: http://github.com/openemr/openemr
==Official git Repository Mirrors==
===Sourceforge===
===Sourceforge===
:* repository link: git://git.code.sf.net/p/openemr/code
:* repository link: git://git.code.sf.net/p/openemr/code
:* web page link: http://sourceforge.net/projects/openemr/
:* web page link: http://sourceforge.net/projects/openemr/
 
:* mirrors from GitHub repository every 30 minutes via an external script
==Official git Repository Mirrors==
===github===
:* repository link: git://github.com/openemr/openemr.git
:* web page link: http://github.com/openemr/openemr
:* mirrors from Sourceforge repository every 30 minutes via an external script
===bitbucket===
===bitbucket===
:* repository link: <nowiki>https://bitbucket.org/openemr/openemr.git</nowiki>
:* repository link: <nowiki>https://bitbucket.org/openemr/openemr.git</nowiki>
:* web page link: http://bitbucket.org/openemr/openemr/
:* web page link: http://bitbucket.org/openemr/openemr/
:* mirrors from Sourceforge repository every 30 minutes via an external script
:* mirrors from GitHub repository every 30 minutes via an external script
===assembla===
===assembla===
:* repository link: git://git.assembla.com/openemr.git
:* repository link: git://git.assembla.com/openemr.git
:* web page link: http://www.assembla.com/spaces/openemr/
:* web page link: http://www.assembla.com/spaces/openemr/
:* mirrors from Sourceforge repository every 30 minutes via an external script
:* mirrors from GitHub repository every 30 minutes via an external script
===codeplex===
===codeplex===
:* repository link: <nowiki>https://git01.codeplex.com/openemr</nowiki>
:* repository link: <nowiki>https://git01.codeplex.com/openemr</nowiki>
:* web page link: http://openemr.codeplex.com/
:* web page link: http://openemr.codeplex.com/
:* mirrors from Sourceforge repository every 30 minutes via an external script
:* mirrors from GitHub repository every 30 minutes via an external script
===repo.or.cz===
===repo.or.cz===
:* repository link: git://repo.or.cz/openemr.git
:* repository link: git://repo.or.cz/openemr.git
:* web page link: http://repo.or.cz/w/openemr.git
:* web page link: http://repo.or.cz/w/openemr.git
:* Supposed to mirror from the Sourceforge repository every 60 minutes automatically by the repo.or.cz site.
:* Supposed to mirror from the GitHub repository every 60 minutes automatically by the repo.or.cz site.


==Experimental Repository Mirrors==
==Experimental Repository Mirrors==
Line 37: Line 36:
:* repository link: http://code.launchpad.net/openemr
:* repository link: http://code.launchpad.net/openemr
:* web page link: http://code.launchpad.net/openemr
:* web page link: http://code.launchpad.net/openemr
:* Supposed to mirror from the Sourceforge repository every 4-6 hours automatically by the launchpad.net site.
:* Supposed to mirror from the GitHub repository every 4-6 hours automatically by the launchpad.net site.
:* Note is has been broken since 2013.
:* Note is has been broken since 2013.


==Developer roles and work flow==
==Developer roles and work flow==
===Administrators===
:* These folks have access to all the project tools and codebase repositories.
===Integration Developers===
===Integration Developers===
:* These are the only developers with commit access to the sourceforge repository.
:* These are the only developers with commit access to the GitHub repository.
:* They have demonstrated common sense and proficiency in git and OpenEMR development.
:* They have demonstrated common sense and proficiency in git and OpenEMR development.
:* They are responsible for committing their own code.
:* They are responsible for committing their own code.
:* They are willing to commit the code of the "Privileged Developers" (when requested).
:* They are willing to commit the code of the "Privileged Developers" (when requested).
:* Standardized methods to commit to the sourceforge repository have been documented in the 'Advanced Usage' section of the  [[Git_for_dummies|git for OpenEMR tutorial wiki page]] . Rather than pull in the entire remote branch of somebody else's code, recommend pulling in each commit via the 'cherry-pick' command (this is specifically documented on the [[Git_for_dummies#Committing_other_user.27s_code_to_the_official_git_repository_on_Sourceforge_.28quick_and_safe_method.29_.28For_Integration_Developers.29|git for OpenEMR tutorial wiki page]]).
:* Standardized methods to commit to the GitHub repository have been documented in the 'Advanced Usage' section of the  [[Git_for_dummies|git for OpenEMR tutorial wiki page]] . Rather than pull in the entire remote branch of somebody else's code, recommend pulling in each commit via the 'cherry-pick' command (this is specifically documented on the [[Git_for_dummies#Committing_other_user.27s_code_to_the_official_git_repository_on_GitHub_.28quick_and_safe_method.29_.28For_Integration_Developers.29|git for OpenEMR tutorial wiki page]]).


===Privileged Developers===
===Privileged Developers===
:* These are developers that have demonstrated common sense and proficiency in OpenEMR development.
:* These are developers that have demonstrated common sense and proficiency in OpenEMR development.
:* They do not have commit access to the sourceforge repository.
:* They do not have commit access to the GitHub repository.
:* Their code will be directly committed to the sourceforge repository upon request to an "Integration Developer" in the Developer forum. (will be committed within 48 hours). To clarify, this is for code that is ready to be committed; ie. do not request commits of code that might need further review.
:* Their code will be directly committed to the GitHub repository upon request to an "Integration Developer" in the Developer forum. (will be committed within 48 hours). To clarify, this is for code that is ready to be committed; ie. do not request commits of code that might need further review.
::* To take advantage of this "fast-track" commit, you need to submit code via a public git branch. ([[Git_for_dummies#Submit_your_code_for_commit_.28For_Privileged_Developers.29|instructions on how to do this can be found on this wiki page]]). If this is done correctly, then it only takes an "Integration Developer" several minutes to commit your code to the sourceforge repository.
::* To take advantage of this "fast-track" commit, you need to submit code via a public git branch. ([[Git_for_dummies#Submit_your_code_for_commit_.28For_Privileged_Developers.29|instructions on how to do this can be found on this wiki page]]). If this is done correctly, then it only takes an "Integration Developer" several minutes to commit your code to the GitHub repository.


===Standard Developers===
===Standard Developers===
:* Standard developers whom have or are in process of submitting code.
:* Standard developers whom have or are in process of submitting code.
:* They do not have commit access to the sourceforge repository.
:* They do not have commit access to the GitHub repository.
:* Their code needs to be reviewed before committing to the sourceforge repository.
:* Their code needs to be reviewed before committing to the GitHub repository.
::* Best way to do this is to submit code via a public git branch. ([[Git_for_dummies#Submit_your_code_for_review|instructions on how to do this can be found on this wiki page]]). If this is done correctly, then it only takes an "Integration Developers" several minutes to commit your code to the sourceforge repository if deemed acceptable by the community review.
::* Best way to do this is to submit code via a public git branch. ([[Git_for_dummies#Submit_your_code_for_review|instructions on how to do this can be found on this wiki page]]). If this is done correctly, then it only takes an "Integration Developers" several minutes to commit your code to the GitHub repository if deemed acceptable by the community review.


==Developers==
==Developers==
:(Only sourceforge account name, company association, and link to their public repository are shown.)
:(Only github(or sourceforge) account name, company association, and link to their public repository are shown.)
:(Ideally, each developer should have their own sourceforge account along with a public repository.)
:(Ideally, each developer should have their own public repository.)
:(Names are alphabetically ordered)
:(Names are alphabetically ordered)
===Administrators===
:<del>Walt Pennington</del>(2005-2009)
:<del>Andres Paglayan</del>(2005-2009)
:<del>James Perry</del>(2005-2009)
:<del>[https://github.com/MatthewVita Matthew Vita]</del>(2017 - 2020)
:[https://github.com/sunsetsystems Rod Roark] (2005 - current)
:[https://github.com/bradymiller Brady Miller] (2009 - current)
:[https://github.com/robertdown Robert Down] (2017 - current)
:[https://github.com/sjpadgett Jerry Padgett] (2019 - current)
:[https://github.com/stephenwaite Stephen Waite] (2020 - current)


===Integration Developers===
===Integration Developers===
:[http://sourceforge.net/users/bradymiller Brady Miller] ([http://github.com/bradymiller/openemr repository])
:[https://github.com/bradymiller Brady Miller] ([https://github.com/bradymiller/openemr repository])
:[http://sourceforge.net/users/sunsetsystems Rod Roark] (Rod at [[OpenEMR Professional Support#Sunset_Systems|Sunset Systems]]) ([http://github.com/sunsetsystems/openemr repository])
:[https://github.com/sjpadgett Jerry Padgett] ([https://github.com/sjpadgett/openemr repository])
:[http://sourceforge.net/users/wakie87 Scott Wakefield] ([http://github.com/Wakie87/openemr repository])
:[https://github.com/MatthewVita Matthew Vita] ([https://github.com/MatthewVita/openemr repository])
:[https://github.com/robertdown Robert Down] ([https://github.com/robertdown/openemr repository])
:[https://github.com/sunsetsystems Rod Roark] (Rod at [[OpenEMR Professional Support#Sunset_Systems|Sunset Systems]]) ([https://github.com/sunsetsystems/openemr repository])
:[https://github.com/stephenwaite Stephen Waite] ([https://github.com/stephenwaite/openemr repository])


===Privileged Developers===
===Privileged Developers===
Line 93: Line 109:
:[http://sourceforge.net/users/markleeds markleeds]
:[http://sourceforge.net/users/markleeds markleeds]
:Matrix ([https://sourceforge.net/u/osverdlov/profile/ Oleg Sverdlov], [https://sourceforge.net/u/sharonco/profile/ Sharon Cohen], and [https://sourceforge.net/u/amielel/profile/ Amiel Elboim] at Matrix) ([https://github.com/matrix-israel/openemr.git repository])
:Matrix ([https://sourceforge.net/u/osverdlov/profile/ Oleg Sverdlov], [https://sourceforge.net/u/sharonco/profile/ Sharon Cohen], and [https://sourceforge.net/u/amielel/profile/ Amiel Elboim] at Matrix) ([https://github.com/matrix-israel/openemr.git repository])
:[https://sourceforge.net/u/matthewvita/profile/ Matthew Vita] ([https://github.com/MatthewVita/openemr repository])
:[http://sourceforge.net/users/mcaloon mcaloon] ([http://github.com/mcaloon/openemr repository])
:[http://sourceforge.net/users/mcaloon mcaloon] ([http://github.com/mcaloon/openemr repository])
:[http://sourceforge.net/users/mdsupport mdsupport] ([http://github.com/mdsupport/openemr repository])
:[http://sourceforge.net/users/mdsupport mdsupport] ([http://github.com/mdsupport/openemr repository])
Line 102: Line 117:
:[http://sourceforge.net/users/rachoac rachoac] (Aron at [[OpenEMR Professional Support#Medical_Information_Integration.2C_LLC_-_MI2|Medical Information Integration]]) ([http://github.com/rachoac/openemr repository])
:[http://sourceforge.net/users/rachoac rachoac] (Aron at [[OpenEMR Professional Support#Medical_Information_Integration.2C_LLC_-_MI2|Medical Information Integration]]) ([http://github.com/rachoac/openemr repository])
:[http://sourceforge.net/users/medfetch Ray Magauran] ([http://github.com/ophthal/openemr repository])
:[http://sourceforge.net/users/medfetch Ray Magauran] ([http://github.com/ophthal/openemr repository])
:[http://sourceforge.net/users/robertdown robertdown] ([http://bitbucket.org/rdown/openemr repository])
:rishabhemr ([http://github.com/rishabhemr/openemr repository])
:[http://sourceforge.net/u/robertovasquez/profile/ Roberto Vasquez] ([http://github.com/robertogagliotta/openemr repository])
:[http://sourceforge.net/u/robertovasquez/profile/ Roberto Vasquez] ([http://github.com/robertogagliotta/openemr repository])
:rreddy70 (Ram at [[OpenEMR_Professional_Support#EnSoftek.2C_Inc|Ensoftek]]) ([http://github.com/rreddy70/openemr repository])
:rreddy70 (Ram at [[OpenEMR_Professional_Support#EnSoftek.2C_Inc|Ensoftek]]) ([http://github.com/rreddy70/openemr repository])
:[http://sourceforge.net/u/samuelelliot/profile/ Sam Likins] ([http://github.com/samlikins/openemr repository])
:[http://sourceforge.net/u/samuelelliot/profile/ Sam Likins] ([http://github.com/samlikins/openemr repository])
:[https://github.com/Wakie87 Scott Wakefield] ([http://github.com/Wakie87/openemr repository])
:[http://sourceforge.net/users/semteacher semteacher] ([http://github.com/semteacher/openemr repository])
:[http://sourceforge.net/users/semteacher semteacher] ([http://github.com/semteacher/openemr repository])
:[http://sourceforge.net/users/stephen-smith stephen-smith] ([http://github.com/stephen-smith/openemr repository])
:[http://sourceforge.net/users/stephen-smith stephen-smith] ([http://github.com/stephen-smith/openemr repository])
Line 143: Line 159:
:[http://sourceforge.net/users/jnewlin71 James Newlin] ([http://github.com/jnewlin71/openemr repository])
:[http://sourceforge.net/users/jnewlin71 James Newlin] ([http://github.com/jnewlin71/openemr repository])
:[http://sourceforge.net/users/jason0 jason0] (Jason at [[OpenEMR Professional Support#Medical_Information_Integration.2C_LLC_-_MI2|Medical Information Integration]]) ([http://github.com/jason0/openemr repository])
:[http://sourceforge.net/users/jason0 jason0] (Jason at [[OpenEMR Professional Support#Medical_Information_Integration.2C_LLC_-_MI2|Medical Information Integration]]) ([http://github.com/jason0/openemr repository])
:[https://sourceforge.net/u/sjpadgett/profile/ Jerry Padgett] ([http://github.com/sjpadgett/openemr repository])
:[http://sourceforge.net/users/jjwjj jjwjj]
:[http://sourceforge.net/users/jjwjj jjwjj]
:[http://sourceforge.net/users/jyo2013 Jyotsna] ([http://github.com/jyotsnan/openemr repository])
:[http://sourceforge.net/users/jyo2013 Jyotsna] ([http://github.com/jyotsnan/openemr repository])
Line 160: Line 175:
:[http://sourceforge.net/users/rnagul rnagul]
:[http://sourceforge.net/users/rnagul rnagul]
:[http://sourceforge.net/u/rosion/profile/ Rosion] ([http://github.com/rozion/openemr-1 repository])
:[http://sourceforge.net/u/rosion/profile/ Rosion] ([http://github.com/rozion/openemr-1 repository])
:rishabhemr ([http://github.com/rishabhemr/openemr repository])
:[http://sourceforge.net/users/rpl121 rpl121] ([http://github.com/rpl121/openemr repository])
:[http://sourceforge.net/users/rpl121 rpl121] ([http://github.com/rpl121/openemr repository])
:[http://sourceforge.net/users/sahilsinha sahilsinha] ([http://github.com/sahilsinha/openemr repository])
:[http://sourceforge.net/users/sahilsinha sahilsinha] ([http://github.com/sahilsinha/openemr repository])
:[http://sourceforge.net/users/skaryshev skaryshev] ([http://github.com/skaryshev/openemr repository])
:[http://sourceforge.net/users/skaryshev skaryshev] ([http://github.com/skaryshev/openemr repository])
:[http://sourceforge.net/users/sprdad sprdad] ([http://github.com/sprdad/openemr repository])
:[http://sourceforge.net/users/sprdad sprdad] ([http://github.com/sprdad/openemr repository])
:sukhjeet81 ([https://github.com/sukhjeet81/openemr.git repository])
:[http://sourceforge.net/users/teddziuba teddziuba] ([http://github.com/teddziuba/openemr repository])
:[http://sourceforge.net/users/teddziuba teddziuba] ([http://github.com/teddziuba/openemr repository])
:[http://sourceforge.net/users/tudorpopa Tudor Popa] ([http://github.com/dragon76n/openemr repository])
:[http://sourceforge.net/users/tudorpopa Tudor Popa] ([http://github.com/dragon76n/openemr repository])

Revision as of 18:29, 2 February 2020

Workflow.png

Overview

Our main official repository is kept on github. We migrated from cvs to git on 10/30/2010, which is described on the git migration wiki page. We then migrated the repository from sourceforge to GitHub on 8/31/2016. Our GitHub repository also has several official mirrors, which are described below. The proper way for individual developers to set up their personal git repository is described on the git for OpenEMR tutorial wiki page. To avoid breaking the main GitHub git repository, we are using the following git repository structure, work flow and development structure:

Official git Main Repository

GitHub

Official git Repository Mirrors

Sourceforge

bitbucket

assembla

codeplex

  • repository link: https://git01.codeplex.com/openemr
  • web page link: http://openemr.codeplex.com/
  • mirrors from GitHub repository every 30 minutes via an external script

repo.or.cz

Experimental Repository Mirrors

launchpad

This is actually a Bazaar repository, which the Launchpad site automatically converts from git. Due to technical limitations (they plan to fix this), it is only able to mirror the master branch.

Developer roles and work flow

Administrators

  • These folks have access to all the project tools and codebase repositories.

Integration Developers

  • These are the only developers with commit access to the GitHub repository.
  • They have demonstrated common sense and proficiency in git and OpenEMR development.
  • They are responsible for committing their own code.
  • They are willing to commit the code of the "Privileged Developers" (when requested).
  • Standardized methods to commit to the GitHub repository have been documented in the 'Advanced Usage' section of the git for OpenEMR tutorial wiki page . Rather than pull in the entire remote branch of somebody else's code, recommend pulling in each commit via the 'cherry-pick' command (this is specifically documented on the git for OpenEMR tutorial wiki page).

Privileged Developers

  • These are developers that have demonstrated common sense and proficiency in OpenEMR development.
  • They do not have commit access to the GitHub repository.
  • Their code will be directly committed to the GitHub repository upon request to an "Integration Developer" in the Developer forum. (will be committed within 48 hours). To clarify, this is for code that is ready to be committed; ie. do not request commits of code that might need further review.

Standard Developers

  • Standard developers whom have or are in process of submitting code.
  • They do not have commit access to the GitHub repository.
  • Their code needs to be reviewed before committing to the GitHub repository.
  • Best way to do this is to submit code via a public git branch. (instructions on how to do this can be found on this wiki page). If this is done correctly, then it only takes an "Integration Developers" several minutes to commit your code to the GitHub repository if deemed acceptable by the community review.

Developers

(Only github(or sourceforge) account name, company association, and link to their public repository are shown.)
(Ideally, each developer should have their own public repository.)
(Names are alphabetically ordered)

Administrators

Walt Pennington(2005-2009)
Andres Paglayan(2005-2009)
James Perry(2005-2009)
Matthew Vita(2017 - 2020)
Rod Roark (2005 - current)
Brady Miller (2009 - current)
Robert Down (2017 - current)
Jerry Padgett (2019 - current)
Stephen Waite (2020 - current)

Integration Developers

Brady Miller (repository)
Jerry Padgett (repository)
Matthew Vita (repository)
Robert Down (repository)
Rod Roark (Rod at Sunset Systems) (repository)
Stephen Waite (repository)

Privileged Developers

acmoore (repository)
andres_paglayan
anilnakkani (repository) (Anil at Ensoftek)
apmuthu (repository)
Arnab Naha (repository)
CapMinds (repository1)(repository2) (Naina and Dinesh at CapMinds Technologies)
cfapress
coleedo (repository)
Craig Bezuidenhout (Craig at TajEmo Enterprises) (current repository) (prior repository) (prior user)
drbowen (repository)
epsdky (repository)
Jan Jajalla (repository)
Juggernaut Systems Express (repository) (Sherwin at Juggernaut Systems Express)
julialongtin (Julia at ZoneOne) (repository)
jwallace00 (Jeremy at Medical Information Integration) (repository)
kchapple (Ken at Medical Information Integration) (repository)
Kevin Yeh (Kevin at IntegralEMR) (repository)
kevmccor (repository)
larrylart
lcmaas3 (repository) (Luis at EMR Direct)
markleeds
Matrix (Oleg Sverdlov, Sharon Cohen, and Amiel Elboim at Matrix) (repository)
mcaloon (repository)
mdsupport (repository)
medmasterpro (repository)
michaelf5 (Michael at Garden State Health Systems) (repository)
mmfsystems (repository)
Practice Provider (Umer and Dev-PracticeProvider at Practice Provider) (repository)
rachoac (Aron at Medical Information Integration) (repository)
Ray Magauran (repository)
rishabhemr (repository)
Roberto Vasquez (repository)
rreddy70 (Ram at Ensoftek) (repository)
Sam Likins (repository)
Scott Wakefield (repository)
semteacher (repository)
stephen-smith (repository)
Stephen Waite (repository)
tekknogenius
Terry Hill (repository)
Tony McCormick (Tony at Medical Information Integration) (repository)
visolveemr (Ranjith at Visolve) (repository)
visolve-selvi (Selvi at Visolve) (repository1) (repository2)
whimmel (repository)
zhhealthcare (Paul, Jacob, Sam, Ajil, Vinish, Eldho and Teny at Z&H Healthcare Solutions) (repository)

Standard Developers

Aaric Pittman (repository)
AppChecker (repository)
aaversa (Aric at Health Care Technologies)
ajperezcrespo (repository) (Alfonso at MD-Technologies)
Art Eaton (repository)
blankev (repository)
bo2999
clucena (repository)
corburn (repository)
cornfeed (repository)
Daniel Pflieger (Daniel at Medical Information Integration) (repository)
derekbrownjr (repository)
dlee5400
dwr1975 (repository)
FikriFadzil (repository)
fndtn357 (repository)
fsgl
garcianc (repository)
geovasilakos
hielkema (repository)
hrivera787
iankarlwallace (repository)
ideaman911
James Newlin (repository)
jason0 (Jason at Medical Information Integration) (repository)
jjwjj
Jyotsna (repository)
kjs3250
Kyle Nave (repository)
lucian0308 (repository)
meditcare
Paul Williams (repository)
penguin8r
pithonsoft (repository)
produnis (repository)
quartarian (repository)
richsiy (repository)
RitwikG (repository)
rmoshiri (repository)
rnagul
Rosion (repository)
rpl121 (repository)
sahilsinha (repository)
skaryshev (repository)
sprdad (repository)
sukhjeet81 (repository)
teddziuba (repository)
Tudor Popa (repository)
tvgm2 (repository)
vikrasharma (repository)
weesnerkim (repository)
Yisrael (repository)
ytiddo
zaalt (repository)
(All other developers not mentioned also fall into this category)