I want to backup everything including master & other branches & commits on my local & create new repository using different account.
Which steps should i follow ? (bundle, mirror or clone)
To backup your local, one of the following is enough
Option 1. Just copy the project folder to a new place.
Option 2
git checkout master
in that folder.Option 3
Now, you need to push to a remote repository. Do it just as you did with previous repo, but use new credentials.
git remote add ...