#!/bin/bash
# Save a git project to a specific repo (e.g. github, bitbucket, ...)
function save-project-to-repo() {
    git remote rm origin
    git remote add origin $1
    git push
}
declare readonly gitRemotes=(
    
[email protected]:pH-7/ph2gravatar.git
    
[email protected]:pH_7/ph2gravatar.git
    
[email protected]:pH-7/pH2Gravatar.git
)
for remote in "${gitRemotes[@]}"
do
    save-project-to-repo $remote
done