/Growify

Primary LanguageHTML

Grow-Platform

This platform connects vegetables & fruits growers with buyers. It's local, it's good, it's better!

Repository address: https://github.com/Jeanssk/Grow-Platform.git

Primers on Git: http://rogerdudler.github.io/git-guide/

Basic steps before pushing changes to Origin(github) :

  1. git checkout -b myBranch
  2. git add .
  3. git commit -m “my commit message”
  4. git checkout master
  5. git pull origin master
    (Manage Eventual Conflicts)
  6. git merge myBranch
    (Manage Conflicts)
  7. git push origin master