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.

Start Your Journey with Motoshare

Best Branching and Merging strategies in Gerrit

Best Branching and Merging strategies in Gerrit Step 1 – First Lets read this article about Best Branching and Merging strategies in git Best Branching and Merging strategies in git Step 2 – Now Lets learn the Gerrit Merge Types https://nofluffjuststuff.com/magazine/2016/04/understanding_and_applying_gerrit_part_3_gerrit_submit_types_and_git_review Step 3 – Time to Learn the Types of Submit in Gerrit https://gerrit-review.googlesource.com/Documentation/project-configuration.html Step … Read more

Best Branching and Merging strategies in git

Best Branching and Merging strategies in git Step 1 – First you need to learn the needs of branches. This is very good read. https://docs.microsoft.com/en-us/vsts/repos/tfvc/branching-strategies-with-tfvc?view=vsts Step 2 – Now time has come to Learn best branching model in Git. https://buddy.works/blog/5-types-of-git-workflows https://hackernoon.com/a-branching-and-releasing-strategy-that-fits-github-flow-be1b6c48eca2 https://nvie.com/posts/a-successful-git-branching-model/ Step 3 – Now, Lets understand, what is the kind of merges we … Read more

How to revert the changes once its submitted in Gerrit

How to revert the changes once its submitted in Gerrit The Revert button is available if the change has been submitted. This Reverts the change via creating a new one. When the Revert button is pressed, a panel will appear to allow the user to enter a commit message for the reverting change. Once a … Read more

How to replace Changes after the Gerrit review without changing the commit id?

How to replace Changes after the Gerrit review without changing the commit id? One of the main benefits of code review is the ability to receive and incorporate feedback from other developers without changing the commit-id and review id. With Gerrit, you incorporate these changes by amending the commit. Gerrit uses the CHange-Id to ensure … Read more

How to update or pull current branch before committing in Git?

Best practice says that before you commit in git, you need to either do git pull or git fetch/merge. However, there is a way to find out wheather your branches is not in sync with remote. To check the remote repo status you are really simulating a “fetch” $ git fetch -v –dry-run To bring … Read more

Install and Configure Prometheus Server and Node Exporter in RHEL

Install and Configure Prometheus Server and Node Exporter There are 3 importants components to make sure Prometheus is up and running. We need to install and configure Prometheus Server, Node Exporter, and Dashborad which can be PromDash or Grafana. Step 1 – Install and configure Prometheus Server in RHEL 7 Download Prometheus Download Prometheus from … Read more

Install and Configure Grafana in Ubuntu and Debian

Install and Configure Grafana in Ubuntu and Debian Step 1 – Download & Install Grafana Download Grafana RPM file RPM for Linux from https://grafana.com/grafana/download?platform=linux # Ubuntu & Debian $ wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana_5.2.2_amd64.deb $ sudo dpkg -i grafana_5.2.2_amd64.deb Step 2 – Understand Grafana Installation details in Ubuntu/Debian Installs binary to /usr/sbin/grafana-server Installs Init.d script to /etc/init.d/grafana-server Creates … Read more

Install and Configure Grafana in RHEL 7

Install and Configure Grafana in RHEL 7 Step 1 – Download & Install Grafana Download Grafana RPM file RPM for Linux from https://grafana.com/grafana/download?platform=linux # RHEL 7 $ sudo yum install initscripts fontconfig -y $ wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-5.2.2-1.x86_64.rpm $ sudo yum localinstall grafana-5.2.2-1.x86_64.rpm Step 2 – Understand Grafana Installation details in RHEL/CENTOS Installs binary to /usr/sbin/grafana-server Copies … Read more