Post
Topic
Board Development & Technical Discussion
Re: How to create a PULL request
by
kurtosis
on 26/02/2012, 00:42:28 UTC
or optionally (for posterity of a stickied thread):

Code:
git add -A
git commit -m 'added awesome new feature'
git push -u origin master

Explanations for -A and -u.  Generally only use -A if all the modifications to be committed are a single bundle of functionality, describable by the same commit message.