Github is most popular free project hosting site. You can git repository and upload your project with following steps.
- Create Project repository in in Github and copy the repository http URL
- Install git client in you local machine.
- Goto directory where you want to checkout the code. Right click on directory and select 'Git Bash here' from menu. It will open git bash console
- In git console run git clone command.
$ git clone https://github.com/sujanctg2005/oracle.git - Change directory to oracle
$ cd oracle/ - Check git status
$ git status - Modify the files you want to push in git hub
- Add modified files in local git repository
$ git add * - Commit modified files in local git repository
$ git status
$ git commit -m 'comments' * - Now you can push modified files in git repository
$ git status
$ git push https://github.com/sujanctg2005/oracle.git
This push command will prompt for Github user-name and password. You can verify the push just browsing that git repository in online.