Dbtester is a small tool to run several kinds of test against a database, like connectivity and performance test.
I'm new to programming and this is my first project, so I put some usage hints here.
Set up Git on local machine
mkdir /path/to/your/project
cd /path/to/your/project
git init
git remote add bitbucket https://[email protected]/username/dbtester.git
Create first file, commit, and push
git add .
git commit -m 'Initial commit with contributors'
git push -u bitbucket master
git remote add github https://github.com/username/dbtester
git push -u github master
git remote add bitbucket https://[email protected]/username/dbtester.git
git fetch bitbucket
git pull bitbucket master
git clone https://[email protected]/username/dbtester.git
git remote rename origin bitbucket
git remote add github https://github.com/username/dbtester
git remote show
git remote show bitbucket