# 2021.10.20 meeting notes with Rishi
###### tags: `Programming` `Rishi` `Chillkuang`
[TOC]
## Lamrim Contents
- Lamrim Chinese Textbook
>
- Lamrim English Textbook
> p.71 LL15 - P.71 The End
- English Commentary Book 3, ver 1.0
> ch 4-21 LL6 "With respect to..." - ch4-24 L11 "... Let's take a recess"
## Goal
Learn how to cooperate using github ^^
## Materials
### Git & GitHub Tutorial for Beginners - Collaborating on GitHub
{%youtube MnUd31TvBoU %}
### Take away
#### Github Command
#### To clone a repository to local computer
```
git clone "Insert HTTPS URL OF MAIN REPO HERE"
```
#### To pull main branch into local computer and then update
```
git pull origin main
```
##### Delete a branch
```
git branch -d <branch>
```
##### To see which branch u r in
```
git rev-parse --abbrev-ref HEAD
```
##### Create a new branch
```
git checkout -b <new-branch>
```