On Tue, Dec 14, 2010 at 6:54 PM, john skaller
<skal...@users.sourceforge.net> wrote:
>
> Perhaps, though I for one have no idea how to do that :)

You just do:

% git format-patch remotes/origin/master
0001-Add-some-more-files-to-.gitignore.patch
...

and it creates a series of .patch files you can either manually attach
to an email, or do:

% git send-email 0001-Add-some-more-files-to-.gitignore.patch

to mail it in.


> At this stage, we're really not interested in patches: we need developers.
> People to rewite major bits of code, develop whole libraries, etc.
>
> Particularly we need a set (read: a lot more than one) of programmers
> to handle Windows stuff..

Yes, but we got to start small with these things or else no one will
commit the time to do any of the major stuff.


>> Second, github also has nice support for handling
>> pull requests:
>>
>> http://help.github.com/pull-requests/
>
> Sure .. and for Windows users?

git's now installable from windows, and you can use github with it.


> Do I? I wouldn't know. I tried "fetch". Seems obvious, I'm not trying to 
> checkout
> a file, I'm trying to re-fetch one :)

Unfortunately the terminology can get a little confused with git.
Fetching gets things from a remote server, but you already have the
full history locally, so you're just re-checking out a file from the
local repository :)


>> Oh, and about things backed up onto github. github doesn't get any
>> changes until you do a "git push". Until you do that all your changes
>> are saved in your local git repository.
>
> I know, the question is: what happens if I make a new "feature" branch/

No difference. git just treats the "features/" string prefix of a
branch as just a string prefix. The "/" has no meaning. There's no
difference between a branch called "foo" and "features/foo".

----

Oh and I think I'm going to switch felix over to a git-flowy style
once we tag v1.1.6rc3, where all the development happens on a develop
branch, and the master branch is just for tags. I think this will make
things ultimately much more stable.

------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to