git rebase from a url/path
- by edA-qa mort-ora-y
Why can I not rebase from the same location that I can pull? For example, if I am in a pository I can pull from another repository:
git pull /path/to/other
But I cannot rebase from that other repository; the following fails:
git rebase /path/to/other
The help for rebase doesn't mention any refspec's, so I don't know how, or even if, I can/should specify them.
How can I rebase from a different location?