Hunsu
Hunsu

Reputation: 3391

How to make pull request using git

I'm working on project located in Github. Now I have made changes to the project and I want to do a pull request. I'm using this command : git pull but I get

 * branch            master     -> FETCH_HEAD
Already up-to-date.

How to get this to work?

Upvotes: 0

Views: 141

Answers (2)

Nikhil Gupta
Nikhil Gupta

Reputation: 1778

I assume you are working on a separate branch and have already committed your changes. If not, use GIT commit to commit your changes and then git push to push them to the remote branch in git hub. After this, use the instructions at https://help.github.com/articles/creating-a-pull-request to create a pull request.

Upvotes: 0

lambda2
lambda2

Reputation: 321

Pull requests are specific to GitHub, to you have to go on github to do it, or install a command-line wrapper for GitHub, like Hub, wich can allow yourself to make pull requests directly from command line with git pull-request.

Upvotes: 1

Related Questions