The error indicates that git-rebase expects only one referent, not two. And the source is not a link.
You forgot the slash between the original and the master.
git rebase -i origin/master
- origin is the name of the repository.
- master is a repository branch.
You can have several branches. Then the slash tells git which branch of the repository is the one you want to reinstall.
If you want to replicate your own repository, you only need to write a branch or link without telling any repository.
source share