Changes between Version 2 and Version 3 of UsingGit
- Timestamp:
- 12/01/10 18:49:58 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGit
v2 v3 1 1 == Using git with MythTV == 2 2 3 Once this is put onto MythTV servers, these details will change. 4 5 For now, we will use the svn->git mirror: 3 You will need to create a github account, and link your @mythtv.org email address to it (if a MythTV developer). If you aren't a part of the development team, you can still create a github account and fork the repository into your account, giving pull requests later to get your changes incorporated. 6 4 7 5 {{{ 8 git clone git ://git.jannau.net/mythtv.complete/6 git clone git@github.com:MythTV/mythtv.git 9 7 }}} 10 11 For committing, use SVN (which you will have to checkout separately)12 8 13 9 === configuring git === 14 10 11 If this is the only git repo you are using: 12 15 13 {{{ 16 14 git config --global user.name "Your Name" 17 git config --global user.email you@ yourdomain.example.com15 git config --global user.email you@mythtv.org 18 16 }}} 19 17 20 Please use your real name and a real email address. This will be attached to each commit you make, and is needed for legality reasons (i.e. to clearly denote the contributors, which can be a life-saver if we have licensing issues later) 18 If you do already have other repos going, you will be better off using (from the mythtv checked-out directory): 19 20 {{{ 21 git config user.name "Your Name" 22 git config user.email you@mythtv.org 23 }}} 24 25 Please use your real name and a real email address. If you are on the MythTV development team, please use the assigned canonical @mythtv.org email address. This will be attached to each commit you make, and is needed for legality reasons (i.e. to clearly denote the contributors, which can be a life-saver if we have licensing issues later) 21 26 22 27 === git for svn users === … … 37 42 || svn switch || git checkout branch || || 38 43 || svn merge || git merge || || 44 45 Also, github has a wealth of good information.
