Reputation: 3391
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
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