This is Demo Project for understanding basic github for teams
Preview this web page in browser
Start a Local git repository/repo
git initClone a remote repo [ Download ]
git clone https://github.com/PeraCS/project-demoCreate branch
git checkout -b branch-nameSwitch to a branch
git checkout branch- Note without -b it will switch to a existing branch
Delete a branch
git branch -d branch-nameUpdates current working branch with latest commits from remote repo
git pull- Uses this everytime you started working
Uploads your local branch commits to remote
git push-
Before you do that you need add your remote repo using following command
git add origin https://github.com/PeraCS/project-demo