Hi,
i created a folder common
with a bunch of source files and folders
But i want now to move the common
folder into the include
folder so it looks like include/common
i tried doing
1) git add include
2) git mv common/ include/
but it fails with this error
fatal: bad source, source=myrepo/common, destination=myrepo/include
3) i tried git mv common/ include/common but i get the same error
any idea how to achieve this?