How to change the source version control from SVN to Git

Today I created the Git repository from our SVN repository. Not too hard but need some techniques. Check out from SVN and push to GIT From your workspace clone the svn trunk using git svn clone git svn clone YourSvnTrunkUrl Add remote git repository for pushing git remote add origin YourGitRepoUrl Push the master (trunk) to remote server git push -u origin master To clone 1 branch from svn.