Lemur, It sounds like you want to use git entirely over email? You may want to reconsider that, accepting patches over email is easy, but managing an entire project... you're setting yourself up for a huge headache I fear. You'll probably be much happier with hosted repos, either your own private ones or ones here with github.
If you're determined to use email exclusively, there's a number of options for you: First up is sending patches over email. For that you'll need git-format-patch and git-send-email to send, and get-am to receive. http://www.kernel.org/pub/software/scm/git/docs/user-manual.html#submitting-patches<http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html> http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html http://www.kernel.org/pub/software/scm/git/docs/git-send-email.html http://www.kernel.org/pub/software/scm/git/docs/git-am.html Exchanging patches is probably not very useful for what you're trying to do, though. You might want to check out git-bundle, this allows you to create a single file containing a portion of a repo which you could exchange over email http://www.kernel.org/pub/software/scm/git/docs/git-bundle.html --tek On Fri, Oct 3, 2008 at 4:06 PM, Lemur <[EMAIL PROTECTED]> wrote: > > Hello! > My interesting now: > Who can write how or what is commands in git for organization full > working cycle through email. > It is send and pull a something changes. Also configuration my git > email client etc. > > Big thanks! > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/github?hl=en -~----------~----~----~----~------~----~------~--~---
