How to exclude files from a pull request?
git, pull-request
Solution
Make two branches from where you are right now, for example `my-pull-request` and `other-change`.
Commit a.py and c.py to `my-pull-request`, and b.py to `other-change`. Push the `my-pull-request` branch to Github, and create the pull request.
Problem
I will like to perform a pull and merge request but also I would like to exclude some files from this pull request. ``` Example: a.py b.py c.py ``` I would like to peform a pull request and merge except `b.py` file. What is the easiest way to accomplish this? [edit] the file is not committed it yet.