Monday, March 7, 2011

Installing Git

mkdir ~/.ssh
cd ~/.ssh
ssh-keygen -t rsa -b 2048
(Enter a passphrase!)
chmod 700 ~/.ssh
chmod 600 ~/.ssh/*

git config --global user.name "Tekkub"
git config --global user.email "tekkub@gmail.com"

To make eclipse use git:

save as ~/.m2/settings.xml


  
    
      com.dynamicobjx.repository.internal
      dynobjx_dev
      il0vejava
      664
      775
    
  




Help > Install new software > add site :

http://download.eclipse.org/egit/updates

mysql:
create user 'test'@'localhost' identified by '3006jollibee';
grant all privileges on *.* to 'test'@'localhost';

No comments:

Post a Comment