Changes between Version 33 and Version 34 of CollaborateOnGithub


Ignore:
Timestamp:
Jan 12, 2010, 10:26:22 AM (14 years ago)
Author:
mrts
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CollaborateOnGithub

    v33 v34  
    5252 }}}
    5353
    54 === 2. Register an account on !GitHub ===
     54=== 2. Configure recommended defaults ===
     55
     56(From http://cheat.errtheblog.com/s/git)
     57
     58Tell `git branch` and `git checkout` to setup new branches so that `git pull` will appropriately merge from that remote branch. Without this, you will have to add `--track` to your branch command or manually merge remote tracking branches with `fetch` and then `merge`
     59{{{
     60git config branch.autosetupmerge true
     61}}}
     62or globally
     63{{{
     64git config --global branch.autosetupmerge true
     65}}}
     66
     67Possibly set your username:
     68{{{
     69git config --global user.name 'John Doe'
     70git config --global user.email johndoe@example.com
     71}}}
     72
     73=== 3. Register an account on !GitHub ===
    5574
    5675Go to https://github.com/signup/free and follow the instructions.
Back to Top