This lesson uses The Carpentries Workbench to develop training material for an intermediary level course on using Git effectively for collaboration.
Git is a powerful tool for distributed, collaborative and version controlled "software" development. As with any powerful tool the amount of different options and ways of using it are many resulting in an often bewildering or overwhelming experience for those trying to learn how to use it.
This course seeks to develop material that focuses on some of the more advanced topics and tasks involved with using Git and many of the tasks that make the process of collaborating using Git easier to understand.
- Consolidate concepts of branches and working with them.
- Introduce some simple practices for Git hygeine that keep the repository, issues and pull requests tidy and easier to understand.
- The power and uses of Git Hooks.
- Leveraging Continuous Integration in work flows.
- Effective Reviewing
- Project Management tools
Contributions are welcome please refer to the contribution guidelines of how to do so and ensure you adhere to the Code of Conduct.
To render these pages locally you need to have R installed. Instructions are
available but some additional steps have been taken to make
sure the environment is reproducible using the {renv}
package and
an renv.lockfile
is included which allows the environment to be recreated along with dependencies, including the
After cloning the repository you can setup the renv
and install all packages with
renv::restore()
# Optionally update packages
renv::update()
Once you have installed the dependencies you can render the pages locally by starting R in the project root and running...
sandpaper::serve()
This will build the pages and start a local web-server in R and open it in your default browser. These pages are "live" and as you edit and save them the web-site will be rebuilt and the pages updated.