I am migrating repos from svn to git but the git command I am using only pushes master branch and I need to manually checkout feature branches to push it to remote.
git push --all origin
git push --tags
Above command does not push feature branches. Is there a git command that can do it for me without I checking out the branch and push it to remote?