forked from jennybc/happy-git-with-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workflows-intro.Rmd
25 lines (19 loc) · 1.09 KB
/
workflows-intro.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
# (PART) Daily Workflows {-}
# Useful Git patterns for real life {#workflows-intro .unnumbered}
*Much of this originates as live workshop materials; the unlinked workflows are planned but not yet converted to prose here.*
Git patterns that come up frequently in real work:
* Commit early and often. Push less often. [The Repeated Amend](#repeated-amend).
* [Help, my push was rejected!](#push-rejected)
* [Integrating remote and local work](#pull-tricky). Probably so you can push again.
* Burn it all down.
* Time travel:
- ["I just need to see the past".](#time-travel-see-past) Browse and search on GitHub.
- "I need to visit the past". Create a checkout a branch.
- "I want to return to the past". `git revert`, `git reset`
- "I had a great cookie last October". `git cherry pick`, `git checkout REF -- path`
Play well with others:
* [Fork and clone](#fork-and-clone).
* [Get upstream changes for a fork](#upstream-changes).
* Disposable fork.
* [Make your repo rewarding to browse on GitHub](#workflows-browsability).
* [Explore and extend a pull request](#pr-extend)