Useful git commands

 

Git status – current branch status

git checkout [branch name] load branch

git origin [branch name] fetch origin

git pull origin [branch name] get full origin


release from my branch to QA branch

1) commit changes

2) checkout to development branch

3) fetch all branch changes to local

4) git merge [all user branches]

5) push to development branch

6) checkout to QA


Read full post »

XAMPP: Another web server is already running

When I try to start lampp using 

    /opt/lampp/lampp start

it says "Another web server is already running"!

Solved by running this on terminal
sudo netstat -nap | grep :80

 
You'll see which service is attached to port 80. Get to port number and kill that MF!


sudo kill [number]

 

 

Start xampp!

 

Read full post »
 

Copyright © මල ඉලව් ලිනක්ස්!