Changes between Version 17 and Version 18 of UsingGit
- Timestamp:
- 12/13/10 03:58:18 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGit
v17 v18 35 35 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) 36 36 37 The default git push behaviour is inconvenient or dangerous. Without options it will push all matching branches (branches with the same name in the remote and local repository). 37 The default git push behaviour is inconvenient or dangerous. Without options it will push all matching branches (branches with the same name in the remote and local repository). As above, use --global or run the commands in each repository's checked out directory if you use git for more than just MythTV. 38 38 39 39 {{{ 40 git config -- local --add push.default nothing41 git config -- local --add push.default tracking40 git config --global --add push.default nothing 41 git config --global --add push.default tracking 42 42 }}} 43 43
