# Create a directory for the repo and change to it
C:\dev\repos\github>mkdir adempiere
C:\dev\repos\github>cd adempiere
# Initialize the repository
C:\dev\repos\github\adempiere>git init
Initialized empty Git repository in C:/dev/repos/github/adempiere/.git/
# The default reference to the source repository in a clone is "origin". Clone your
# personal fork from your account <account>.
C:\dev\repos\github\adempiere>git remote add origin https://github.com/<account>/adempiere.git
C:\dev\repos\github\adempiere>git fetch
# Update to the current master branch - for example
C:\dev\repos\github\adempiere>git reset --hard origin/master