# Git global setup git config --global user.name "Your Name" git config --global user.email "your@email.com"
# Create Repository mkdir django_kbc_sm cd django_kbc_sm git init touch README git add README git commit -m "first commit" git remote add origin git@192.168.1.202:django_kbc_sm.git git push -u origin master