People,
This is my use case: I have 3 branches, all three are remote tracking branches.
git branch
release-alpha
* release-allUS
master
Now I added a new file to the release-allUS branch, I made a commit by doing the following:
git add filter_driver.rb
git commit -m "driver code"
Now I want to push only this file to the remote release-allUS branch, how to do this? Thanks so much for any feedback.
source
share