Post
Topic
Board Development & Technical Discussion
Re: How to create a PULL request
by
Zulu
on 28/03/2011, 03:16:09 UTC
I think it's possible to do something along the line of:

Code:
git remote add bitcoin git@github.com:username/bitcoin-git.git

Then you'll only need to do:

Code:
git push bitcoin branch_name
git pull bitcoin branch_name

You can also add a commit message by using the -m flag:

Code:
git commit -a -m "Check out my awesome bugfix"

This way you won't end up in Vim (and freak out). This is more usefull for shorter commit messages though.