1. In the terminal, configure git git config –global user.name ’’ git config –global user.email ’’

  2. create a new empty repository in github

  3. Set up an Rproject in a folder:

  • new project
  • project in a new directory, tick git
  1. configure a new remote repository:

git remote add https://github.com//.git

  1. create a new markdown file in the folder.

  2. Commit it

  3. git push -u class master

New workflowr project

Normally, it is enough to run wflowr_start:

  • sets up a git and configures
  • still need to add remote repository
  1. Create a new directory

  2. run wflow_start, add this directory and set existing=T

  3. Try to commit something

  4. Run git branch wflow

  5. switch to this branch

  6. Commit a change

  7. git push -u class master