Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.03 KB

Learn GIT.md

File metadata and controls

26 lines (23 loc) · 1.03 KB

#Learn GIT

##Introduction

##Global setup:

  • Download and install [Git]
  • In Git Shell or Git Bash
git config --global user.name "Luigi Sison"
git config --global user.emal [email protected]

##[Add a local (PC) project to GitHub] (https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/)

##Add a GitHub project to an Odoo server

cd /odoo/custom/addons
sudo git clone --depth 1 REMOTE URL (like https://github.com/luigisison/vendor-consignment)

##References