Tuesday, December 31, 2013

Top five free applications for PC

Hi friends once go through this link and your system perform well...............

                             

Enjoy.

Thursday, December 26, 2013

Create a git repo in ubuntu PC to sync to your online git repo

1) Create a git-repo directory
2) cd git-repo
3) mkdir <directory for your project/file ..e.g. git1>
4) cd git1
5) copy all your files
6) sudo git init
7) git status
8) Now add your files to local git repository

sudo git add <file name>
9) sudo git commit -m "any message"
10) Now add your online git repository to local repo

git remote add origin https://github.com/<git username>/<your online repo name.git>

11) sudo git remote -v

12) sudo git push -f origin master       or     sudo git push

Here push will delete online repo and add new.......BE CAREFUL