-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
65 lines (43 loc) · 2.24 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
title: 'A Crash course on git'
output:
html_document:
theme: simplex
toc: false
highlight: espresso
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, results = 'asis', warning = FALSE, comment = "")
cat2 <- function(..., lang = 'r') {
cat("```", lang, "\n", sep = "")
cat(...)
cat("```\n")
}
```
## Contents
This is a short (continuously WIP) course on Git and GitHub.
- [Part 1: Version control](part1.html) (source code [here](part1.Rmd){target="_blank"})
- [Part 2: Hands-on local git repo](part2.html) (source code [here](part2.Rmd){target="_blank"})
- [Part 3: Pull Request](part3.html) (source code [here](part3.Rmd){target="_blank"})
The workshop was recorded on March 18th, 2021, and is available [here](https://youtu.be/6gc8VyZJeNM).
## Materials
All the contents of this repository can be downloaded from the following
github repository
https://github.com/USCbiostats/git-crash
You can also download all the contents of this repository (including Rmd scripts) using git:
```bash
git clone https://github.com/USCbiostats/git-crash.git
```
The git client can be downloaded from: https://git-scm.com/downloads, and if
don't like using command line tools, take a look at
[this list of GUIs](https://git-scm.com/downloads/guis).
## Featured Happy Scientist: Jerry C. Elliott
<div align="center">
<img src="https://www.siuestemcenter.org/wp-content/uploads/2020/10/JCHighEagle-e1602550145725-984x804.jpg" width="400px"><br>
<figcaption>
Feature Image: NASA/MSFC/Emmett Given. Source: <a href="https://www.siuestemcenter.org/2020/10/13/jerry-c-elliott-stem-like-me-story/" target="_blank">siuestemcenter.org</a>
</figcaption>
</div>
> Jerry Chris Elliott High Eagle (born 1943) is a physicist and was one of the first Native Americans who worked at NASA. He is most known for his contributions as the lead retrofire officer during Apollo 13, where his actions saved the lives of the three astronauts on board. Elliott's work awarded him the Presidential Medal of Freedom, the highest civilian honor awarded by the President of the United States. -- ([Wiki](https://en.wikipedia.org/wiki/Jerry_C._Elliott))
# Speaker
[**George G Vega Yon, Ph.D.**, *Biostats Research Programmer*](https://ggvy.cl){target="_balnk"}