Skip to content

Git Pratices

Sandeep Valapi edited this page Jan 14, 2019 · 4 revisions

Git best practices

  • If you are facing problems in pull due to lock ref, then use below command
    git gc --prune=now
  • Git always recommends clean branching model. Always keep your branch update before you push any changes.
   git pull
   git commit
   git push
  • Make sure you write proper commit messages before comitting code as it helps reviewer understand the reason of the commit.

What's Next ?

  • My view on Hybris
  • Selenium with BDD framework
  • Reusable addons for ecommerce system

Clone this wiki locally