MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings
From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.
With Motoshare, every parked vehicle finds a purpose.
Owners earn. Renters ride.
🚀 Everyone wins.
# Create a branch and Merge a Branch
500 git branch
501 git branch fea
502 git branch
503 git checkout fea
504 git branch
505 ls
506 touch fea1.txt;git add --all;git commit -m"fea1"
507 touch fea2.txt;git add --all;git commit -m"fea2"
508 ls
509 git checkout master
510 ls
511 git merge fea
512 ls
513 git branch
514 git remote add origin https://github.com/devopsschool-demo-temporary/demo4july.git
515 git push origin fea
516 historyCode language: PHP (php)