Git repository setup

# 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

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.