-
Notifications
You must be signed in to change notification settings - Fork 19
/
slides.Rmd
728 lines (473 loc) · 15.6 KB
/
slides.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
---
title: "GitHub Tutorial"
subtitle: "Introduction to Git and GitHub"
author: "Javed Ali"
role: PhD Student
company: 'University of Central Florida'
date: "`r format(Sys.Date(), format='%d %B %Y')`"
output:
xaringan::moon_reader:
seal: false
lib_dir: libs
css: [xaringan-themer.css, custom.css]
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
includes:
in_header: assets/header.html
after_body: assets/afterInit.html
---
```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE)
library(fontawesome)
library(xaringanExtra)
xaringanExtra::use_panelset()
```
```{r xaringan-themer, include=FALSE, warning=FALSE}
library(xaringanthemer)
style_duo_accent(
primary_color = "#557571",
secondary_color = "#d49a89",
header_font_google = google_font("Montserrat"),
text_font_google = google_font("Source Sans Pro"),
code_font_size = "0.8rem",
link_color = "#d49a89",
)
extra_css <- list(
".accent" = list(color = "#d49a89"),
".white" = list(color = "#FFFFFF"),
".small" = list("font-size" = "30%"),
".h4" = list("font-size" = "1.5rem",
"font-weight" = "600",
"font-family" = "Montserrat"),
".title-slide-custom .remark-slide-number" = list("display" = "none"),
".card" = list("position" = "relative",
"display" = "inline-block",
"margin" = "auto"),
".card .img-top" = list("display" = "none",
"position" = "absolute",
"top" = "0",
"left" = "0",
"z-index" = "99"),
".card:hover .img-top" = list("display" = "inline"),
".circle" = list("border-radius" = "50%")
)
style_extra_css(css = extra_css, outfile = "custom.css")
```
class: title-slide-custom, title-slide, middle
background-color: #557571
<div>
<img class="square" style="position: absolute; top: 190px;right: 50px;" src="imgs/gh-octacat.png" width="350px">
</div>
# Hands-on GitHub Tutorial
### Introduction to Git and GitHub
<br><br><br><br><br><br>
.h4[Javed Ali]
Graduate Research Assistant & PhD Student
Dept. of Civil, Environmental & Construction Engineering
University of Central Florida, USA
<br><br>
.h5[(`r format(Sys.Date(), format='%d %B %Y')`)]
<br>
<br>
<br>
<br>
<br>
<br>
<br>
.pull-right[
<br><br><br>
.footnote[Slides:
<a href="https://tinyurl.com/intro-git-slides"><i class="fa fa-github fa-fw"></i> https://tinyurl.com/intro-git-slides</a>
<!-- (adapted from Alice Lépissier's slides) -->
]
]
---
# Has this happened to you?
```{r echo=FALSE, fig.align="center", out.width="50%", fig.cap=""}
knitr::include_graphics("imgs/final.png")
```
---
# This tutorial is for you
<br>
.pull-left[
.h4[If you want to get started with Git **now**.]
Here, we will focus on the tools you _actually_ need to start working collaboratively and putting your work under version control.
Git is extremely powerful and there are myriad sophisticated things you can do with it. As a result, the [`r fa("book", fill = "#d49a89")` documentation](https://git-scm.com/book/en/v2) is very thorough, but can often be overwhelming `r emo::ji("exploding_head")` if you are just starting.
]
.pull-right[
<img src="https://octodex.github.com/images/Professortocat_v2.png">
]
---
# Why you should use Git
.h4[To be kind to yourself]
.h4[To be kind to your collaborators]
.h4[To ensure your work is reproducible]
<br>
--
### Spillover benefits
`r emo::ji("man_scientist")` `r emo::ji("ruler")` It imposes a certain discipline to your programming.
`r emo::ji("nerd_face")` `r emo::ji("fire")` You can be braver when you code: if your new feature breaks, you can revert back to a version that worked!
`r emo::ji("coder")` `r emo::ji("box")` Keeps multiple (older and newer) versions of everything (not just source code)
---
## Revert back to the last working stage
<div>
<video width="100%" height="100%" autoplay loop controls muted playsinline>
<source src="assets/git-changes.mp4" type="video/mp4">
</video>
</div>
---
# Git and GitHub
.h4[Git]
- the software that allows us to do version control.
- like the “Track Changes” feature from Microsoft Word, but more rigorous, powerful, and scaled up to multiple files.
.h4[GitHub]
- hosting service for git projects — essentially Dropbox for git projects.
- You can host **remote** repositories on https://github.com/. You edit and work on your content in your **local** repository on your computer, and then you send your changes to the remote.
You can interact with Git using the **Graphical User Interface (GUI)** provided by GitHub Desktop, or through the **Command Line Interface (CLI)**.
.h4[In this tutorial, we will use both.]
---
background-image: url(assets/remote-local.png)
background-size: contain
---
## [GitHub](https://github.com/) Walkthrough
<div>
<video width="100%" height="100%" autoplay loop muted controls>
<source src="assets/github-vid.mp4" type="video/mp4">
</video>
</div>
---
# Installation (GUI)
Install GitHub Desktop from <https://desktop.github.com/>.
<div style="width: 100%;">
<img src="https://repository-images.githubusercontent.com/58559694/aeae5400-6102-11e9-980d-dc74185ed41d" width="100%">
</div>
---
# Installation (CLI)
.pull-left[
<br>
.h4[Git for Windows]
https://gitforwindows.org/
<!-- https://tinyurl.com/git-win -->
<br>
.h4[MacOS]
https://tinyurl.com/git-mac
(Alternate: `brew install git`)
]
<br>
.pull-right[
<div class="card">
<img src="https://gitforwindows.org/img/gwindows_logo.png" alt="Card Back">
<img src="https://gitforwindows.org/img/git_logo.png" class="img-top" alt="Card Front">
</div>
]
---
# Setting up git environment
<br>
.h4[As a first-time set up, you need to tell Git who you are.]
Enter these lines (with appropriate changes):
```{bash, eval=FALSE}
git config --global user.name "Javed Ali"
git config --global user.email "javedali@knights.ucf.edu"
```
- Make sure that you include here the same email you used for signing up on GitHub.
Test if this worked by typing
```{bash, eval=FALSE}
git config --list
```
.h4[You only need to do this once.]
---
# SSH key generation & setup
--
**Step 1.** Check if your computer is already connected to GitHub
```{bash, eval=FALSE}
ssh -T git@github.com
```
- If it gives an error, then you're not connected.
<br>
--
**Step 2.** Check what key pairs already exist on your computer.
```{bash, eval=FALSE}
ls -al ~/.ssh
```
- If SSH has been set up on the computer you’re using, the public and private key pairs will be listed. The file names are either `id_ed25519`/`id_ed25519.pub` or `id_rsa`/`id_rsa.pub` depending on how the key pairs were set up.
--
**Step 3.** If they don’t exist on your computer, use this command to create them.
```{bash, eval=FALSE}
ssh-keygen -t ed25519 -C "your email address"
```
---
<br><br><br>
**Step 4.** Now that we have generated the SSH keys, we will find the SSH files when we check.
```{bash, eval=FALSE}
ls -al ~/.ssh
```
<br>
--
**Step 5.** Copy the public key to GitHub
```{bash, eval=FALSE}
cat ~/.ssh/id_ed25519.pub
```
<br>
--
**Step 6.** Now that we’ve set that up, let’s check our authentication again from the command line.
```{bash, eval=FALSE}
ssh -T git@github.com
```
It should say,
```{bash eval=FALSE}
Hi <Your Name>! You have successfully authenticated, but GitHub does not provide shell access.
```
---
class: inverse, middle, center
# Using GitHub Desktop
---
# The basic workflow
### First time
1. **Clone** the repository that you want to work on from GitHub onto your local machine
2. Work on the files/scripts
3. Next, you will **commit** your changes and include an informative message, e.g. "Plot distribution of precipitation"
4. Then, you will **push** your changes to the remote repository
### Subsequent times
1. **Pull** any changes from the remote repository that your collaborators might have made
2. Repeat steps 2-4 above
---
# Working with GitHub
<br>
There are two ways to work with GitHub projects.
**Type 1:**
- Create the repository on GitHub, clone it to your PC, and work on it. **(Recommended)**
<br>
**Type 2:**
- Work on your project locally then create the repository on GitHub and push it to remote.
---
# Create a repo on GitHub
<div>
<video width="100%" height="90%" controls muted>
<source src="assets/create-repo.mp4" type="video/mp4">
</video>
</div>
---
# Cloning
<div>
<video width="100%" height="90%" controls muted>
<source src="assets/cloning_desktop.mp4" type="video/mp4">
</video>
</div>
---
# Work on local repo
<div>
<video width="90%" height="80%" controls muted>
<source src="assets/add_files_desktop.mp4" type="video/mp4">
</video>
</div>
---
# Commit your changes
<div>
<video width="90%" height="80%" controls muted>
<source src="assets/committing_desktop.mp4" type="video/mp4">
</video>
</div>
---
# Commit your changes
.h4[Use an informative commit message]
- (Not great) "Analyze data" `r emo::ji("disappointed")`
- (Better) "Estimate logistic regression" `r emo::ji("tada")`
.h4[Have a consistent style]
- Start with an action verb
- Capitalize message
.h4[Commits are _cheap_, use them often!]
---
# Tracking files
<div>
<video width="100%" height="90%" controls muted>
<source src="assets/staging_git.mp4" type="video/mp4">
</video>
</div>
---
# Push your changes
<div>
<video width="90%" height="80%" controls muted>
<source src="assets/pushing_desktop.mp4" type="video/mp4">
</video>
</div>
---
class: inverse, middle, center
# Using the command line (CLI)
---
# Working on local machine
.h4[Clone the repository]
```bash
git clone URL
```
```bash
git clone https://github.com/javedali99/git-tutorial.git
```
.h4[Stage your files]
```bash
git add .
```
.h4[Commit your changes]
```bash
git commit -m "Add example code"
```
.h4[Push your changes]
```bash
git push
```
---
# Adding your files to git repository
```{r echo=FALSE, fig.align="center", out.width="100%", fig.cap=""}
knitr::include_graphics("imgs/github-workflow.png")
```
---
class: inverse, middle, center
# More command line tips
---
# git status
.h4[Use this to check at what stage of the workflow you are at.]
_This happens when you have modified the script, but haven't staged your changes yet._
```{bash, eval=FALSE}
git status
```
```{bash, eval=FALSE}
{{Changes not staged for commit:}}
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
{{modified: file.py}}
no changes added to commit (use "git add" and/or "git commit -a")
```
---
# git status
_After you stage the `file.py` file, but before you commit the changes._
```{bash, eval=FALSE}
git add file.py
git status
```
```{bash, eval=FALSE}
{{Changes to be committed:}}
(use "git reset HEAD <file>..." to unstage)
modified: file.py
```
.h4[When your local repository is in sync with the remote.]
```{bash, eval=FALSE}
git status
```
```{bash, eval=FALSE}
On branch master
Your branch is up to date with 'origin/main'.
{{nothing to commit, working tree clean}}
```
---
# git pull
Your collaborators have been adding some awesome content to the repository, and you want to fetch their changes from the remote and update your local repository.
.h4[Use this to fetch changes from the remote and to merge them in to your local repository.]
```bash
git pull
```
What this is doing under-the-hood is running a `git fetch` and then `git merge`.
---
# Adding and ignoring files
To stage specific files in your repository, you can name them directly
```bash
git add file.py other-script.py
```
or you can add all of them at once
```bash
git add .
```
You might want to _not_ track certain files in your local repository, e.g., sensitive files such as credentials. But it might get tedious to type out each file that you _do_ want to include by name.
.h4[Use a .gitignore file to specify files to always ignore.]
Create a file called `.gitignore` and place it in your repo. The content of the file should include the names of the files that you want Git to **not track**.
---
# git log
.h4[Use this to look at the history of your repository.]
Each commit has a specific **hash** that identifies it.
```bash
git log
```
```{bash, eval=FALSE}
{{commit af58f79bfa4301643025dd6c8767e65349cf407a}}
Author: Name <Email address>
Date: DD-MM-YYYY
Add file script
```
You can also find this on GitHub, by going to [github.com/user-name/repo-name/commits](https://github.com/javedali99/git-tutorial/commits).
.h4[You can go back in time to a specific commit, if you know its reference.]
---
# Undoing mistakes
Imagine you did some work, **committed** the changes, and **pushed** them to the remote repo. But you'd like to undo those changes.
.h4[Running `git revert` is a "soft undo".]
Say you added some plain text by mistake to `file.py`. Running `git revert` will do the opposite of what you just did (i.e., remove the plain text) and create a new commit. You can then `git push` this to the remote.
```{bash, eval=FALSE}
git revert <hash-of-the-commit-you-want-to-undo>
git push
```
---
# Undoing mistakes
`git revert` is the safest option to use.
.h4[It will preserve the history of your commits.]
```{bash, eval=FALSE}
git log
```
```{bash, eval=FALSE}
commit 6634a076212fb7bac16f9525feae1e83e0f200ca
Author: Name <Email address>
Date: DD-MM-YYYY
{{Revert "Add plain text to code by mistake"}}
{{This reverts commit a8cf7c2592273ef6a28920222a92847794275868.}}
commit a8cf7c2592273ef6a28920222a92847794275868
Author: Name <Email address>
Date: DD-MM-YYYY
Add plain text to code by mistake
```
---
class: inverse, middle, center
# Other resources
---
class: middle, center
# Other Git resources
#### [Version Control with Git](http://swcarpentry.github.io/git-novice/)
#### [GitHub Git Cheatsheet](https://github.github.com/training-kit/downloads/github-git-cheat-sheet/)
#### [Learn Git Branching in Visual and Interactive Way](https://learngitbranching.js.org/)
#### [Pro Git book](https://git-scm.com/book/en/v2)
#### [Happy Git and GitHub for the useR](https://happygitwithr.com/)
#### [Git Cheatsheet](https://ndpsoftware.com/git-cheatsheet.html)
#### [W3School Git Tutorial](https://www.w3schools.com/git/)
---
class: middle, center
background-color: #557571
## .white[Links]
.h4[`r fa("book-open", fill = "#d49a89")`<a href="https://javedali99.github.io/git-tutorial/slides.html">.accent[ Slides]</a>]<br>
.h4[.accent[<i class="fa fa-github fa-fw"></i>]<a href="https://github.com/javedali99/git-tutorial">.accent[ javedali99/git-tutorial]</a>]<br>
.h4[.accent[<i class="fa fa-envelope"></i>]<a href="mailto:javedali@knights.ucf.edu">.accent[ javedali@knights.ucf.edu]</a>]
<br>
---
name: goodbye
class: pink, middle, center
<img style="border-radius: 50%;" src="https://avatars.githubusercontent.com/u/15319503?v=4" width="200px"/>
# Thank you!
#### Find me at...
[`r fontawesome::fa("github")` @javedali99](https://github.com/javedali99)
[`r fontawesome::fa("twitter")` @javedali99](https://twitter.com/javedali99)
[`r fontawesome::fa("link")` javedali.net](https://javedali.net)
```{r include=FALSE}
library(metathis)
meta() %>%
meta_description(
""
) %>%
meta_name("github-repo" = "javedali99/git-tutorial") %>%
meta_viewport() %>%
meta_social(
title = "",
url = "https://javedali.net/",
image = "https://www.javedali.net/author/avatar_hufffe226e957f1b2290d587dc7c95d8a4_871284_270x270_fill_lanczos_center_2.PNG",
image_alt = "Vintage valentine",
og_type = "website",
og_author = "Javed Ali",
twitter_card_type = "summary",
twitter_creator = "@javedali99"
)
```