Wednesday, January 14, 2015

how to upload my code folder into github community using git bush

open Git Bush from popup menu on windows

paste follow code...

git init
git add -A
git add *
git config user.email "email@example.com"
git config user.name "username"
git commit -m "commit description"
git remote add origin https://github.com/broject/CodeIgniterNuSoapSample.git
git push -f origin master

-f forse commit

No comments: