Your configuration specifies to merge with the from the remote, but no such ref was fetched.?

I am getting this error for pull: Your configuration specifies to merge with the ref ‘refs/heads/feature/Sprint4/ABC-123-Branch’ from the remote, but no such ref was fetched. This error is not coming for any other branch.The special thing about this branch is that it is created from the previous commit of another branch. My config file looks … Read more

How to remove a directory from git repository?

I have 2 directories on my GitHub repository. I’d like to delete one of them. How could I do that without deleting and re-creating entire repository? 1 16 Remove directory from git and local You could checkout ‘master’ with both directories; git rm -r one-of-the-directories // This deletes from filesystem git commit . -m “Remove … Read more