Changes between Version 17 and Version 18 of UsingGit


Ignore:
Timestamp:
12/13/10 03:58:18 (15 years ago)
Author:
beirdo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingGit

    v17 v18  
    3535Please 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)
    3636
    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).
     37The 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.
    3838
    3939{{{
    40 git config --local --add push.default nothing
    41 git config --local --add push.default tracking
     40git config --global --add push.default nothing
     41git config --global --add push.default tracking
    4242}}}
    4343