Skip to content

How to use git and GitHub Desktop

Guilherme Aramizo Ribeiro edited this page Dec 20, 2019 · 1 revision

GitHub Desktop

Getting started with GitHub Desktop

Start New Project

  1. In your internet browser, create a new repository on the HIRoLab organization page.
  2. In your GitHub Desktop, clone the repository to your local machine
  3. Develop locally, commit frequently, push when convenient, and pull request eventually.

git

Resources

Common Commands

Initially setup git credentials

git config --global user.name "John Doe"
git config --global user.email johndoe@example.com

Clone this wiki locally