├── .gitignore ├── LICENSE ├── README.md ├── common-workflow.md ├── pdfs ├── 0-1_introduction.pdf ├── 0-2_setup.pdf ├── 0-3_tracking.pdf ├── 0-4_history.pdf ├── 0-5_remotes.pdf ├── 0-6_Github.pdf ├── 0-7_branching.pdf ├── README.pdf ├── common-workflow.pdf └── regen_pdfs.sh └── rstudio-on-gcp.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .rstudio 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/README.md -------------------------------------------------------------------------------- /common-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/common-workflow.md -------------------------------------------------------------------------------- /pdfs/0-1_introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/0-1_introduction.pdf -------------------------------------------------------------------------------- /pdfs/0-2_setup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/0-2_setup.pdf -------------------------------------------------------------------------------- /pdfs/0-3_tracking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/0-3_tracking.pdf -------------------------------------------------------------------------------- /pdfs/0-4_history.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/0-4_history.pdf -------------------------------------------------------------------------------- /pdfs/0-5_remotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/0-5_remotes.pdf -------------------------------------------------------------------------------- /pdfs/0-6_Github.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/0-6_Github.pdf -------------------------------------------------------------------------------- /pdfs/0-7_branching.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/0-7_branching.pdf -------------------------------------------------------------------------------- /pdfs/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/README.pdf -------------------------------------------------------------------------------- /pdfs/common-workflow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/common-workflow.pdf -------------------------------------------------------------------------------- /pdfs/regen_pdfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/pdfs/regen_pdfs.sh -------------------------------------------------------------------------------- /rstudio-on-gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/git-fundamentals-legacy/HEAD/rstudio-on-gcp.sh --------------------------------------------------------------------------------