├── .gitignore ├── LICENSE ├── README.md ├── exercises ├── Exercises.Rmd ├── Exercises.html ├── Exercises.pdf └── this_file_is_junk.txt ├── git_for_R.Rproj ├── presentation ├── cshslogo2019.png ├── figures │ ├── Issues.png │ ├── Workspace 1_003.png │ ├── branch_dialog.png │ ├── branch_icon.png │ ├── clone_repository.png │ ├── commit.png │ ├── cshslogo2019.png │ ├── git_shell.png │ ├── git_tab.png │ ├── github_branches.png │ ├── github_commits.png │ ├── history.png │ ├── new_project.png │ ├── phd101212s.png │ ├── pull.png │ ├── pull_requests.png │ ├── push.png │ ├── staging.png │ ├── switch_branches.png │ └── terminal_tab.png ├── git_for_R.Rmd └── git_for_R.pdf └── setup └── install_R_packages_gitwebinar.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/README.md -------------------------------------------------------------------------------- /exercises/Exercises.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/exercises/Exercises.Rmd -------------------------------------------------------------------------------- /exercises/Exercises.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/exercises/Exercises.html -------------------------------------------------------------------------------- /exercises/Exercises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/exercises/Exercises.pdf -------------------------------------------------------------------------------- /exercises/this_file_is_junk.txt: -------------------------------------------------------------------------------- 1 | This is a junk file. Please delete it. 2 | -------------------------------------------------------------------------------- /git_for_R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/git_for_R.Rproj -------------------------------------------------------------------------------- /presentation/cshslogo2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/cshslogo2019.png -------------------------------------------------------------------------------- /presentation/figures/Issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/Issues.png -------------------------------------------------------------------------------- /presentation/figures/Workspace 1_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/Workspace 1_003.png -------------------------------------------------------------------------------- /presentation/figures/branch_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/branch_dialog.png -------------------------------------------------------------------------------- /presentation/figures/branch_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/branch_icon.png -------------------------------------------------------------------------------- /presentation/figures/clone_repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/clone_repository.png -------------------------------------------------------------------------------- /presentation/figures/commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/commit.png -------------------------------------------------------------------------------- /presentation/figures/cshslogo2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/cshslogo2019.png -------------------------------------------------------------------------------- /presentation/figures/git_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/git_shell.png -------------------------------------------------------------------------------- /presentation/figures/git_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/git_tab.png -------------------------------------------------------------------------------- /presentation/figures/github_branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/github_branches.png -------------------------------------------------------------------------------- /presentation/figures/github_commits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/github_commits.png -------------------------------------------------------------------------------- /presentation/figures/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/history.png -------------------------------------------------------------------------------- /presentation/figures/new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/new_project.png -------------------------------------------------------------------------------- /presentation/figures/phd101212s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/phd101212s.png -------------------------------------------------------------------------------- /presentation/figures/pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/pull.png -------------------------------------------------------------------------------- /presentation/figures/pull_requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/pull_requests.png -------------------------------------------------------------------------------- /presentation/figures/push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/push.png -------------------------------------------------------------------------------- /presentation/figures/staging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/staging.png -------------------------------------------------------------------------------- /presentation/figures/switch_branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/switch_branches.png -------------------------------------------------------------------------------- /presentation/figures/terminal_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/figures/terminal_tab.png -------------------------------------------------------------------------------- /presentation/git_for_R.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/git_for_R.Rmd -------------------------------------------------------------------------------- /presentation/git_for_R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/presentation/git_for_R.pdf -------------------------------------------------------------------------------- /setup/install_R_packages_gitwebinar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CentreForHydrology/git_for_R/HEAD/setup/install_R_packages_gitwebinar.R --------------------------------------------------------------------------------