├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CITATION.cff ├── Introduction-RStudio-Git-GitHub.Rproj ├── LICENSE-CODE.md ├── LICENSE.md ├── README.md ├── SSH.qmd ├── _quarto.yml ├── analysis_start.qmd ├── assets ├── GitHub-remote.png ├── LMU-OSC_favicon.jpg ├── LMU-OSC_logo.jpg ├── add-ssh-key.png ├── commit.png ├── file_list.png ├── first_commit.png ├── first_push_confirm_identity.png ├── git_changed.png ├── git_commit_message.png ├── git_commit_message2.png ├── git_commit_message3.png ├── git_diff.png ├── git_history_tab.png ├── git_history_tab_filter.png ├── git_history_tab_filter_example.png ├── git_more_shell.png ├── git_pane.png ├── git_pane_added.png ├── git_push.png ├── github_git_commands.png ├── my_new_repo_name.png ├── new_repo.png ├── new_repo_name.png ├── project_files.png ├── project_screen1.png ├── project_screen2.png ├── project_screen3.png ├── readme_commit.png ├── ssh-key.png └── staged_readme.png ├── commit.qmd ├── custom.scss ├── github.qmd ├── github_sync.qmd ├── index.qmd ├── installing_git.qmd ├── installing_software.qmd ├── making_change.qmd ├── matomo_analytics.html ├── next_steps.qmd ├── rstudio_project.qmd ├── styles.css ├── updates.qmd ├── version_control.qmd └── viewing_history.qmd /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Introduction-RStudio-Git-GitHub.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/Introduction-RStudio-Git-GitHub.Rproj -------------------------------------------------------------------------------- /LICENSE-CODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/LICENSE-CODE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/README.md -------------------------------------------------------------------------------- /SSH.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/SSH.qmd -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/_quarto.yml -------------------------------------------------------------------------------- /analysis_start.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/analysis_start.qmd -------------------------------------------------------------------------------- /assets/GitHub-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/GitHub-remote.png -------------------------------------------------------------------------------- /assets/LMU-OSC_favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/LMU-OSC_favicon.jpg -------------------------------------------------------------------------------- /assets/LMU-OSC_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/LMU-OSC_logo.jpg -------------------------------------------------------------------------------- /assets/add-ssh-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/add-ssh-key.png -------------------------------------------------------------------------------- /assets/commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/commit.png -------------------------------------------------------------------------------- /assets/file_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/file_list.png -------------------------------------------------------------------------------- /assets/first_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/first_commit.png -------------------------------------------------------------------------------- /assets/first_push_confirm_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/first_push_confirm_identity.png -------------------------------------------------------------------------------- /assets/git_changed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_changed.png -------------------------------------------------------------------------------- /assets/git_commit_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_commit_message.png -------------------------------------------------------------------------------- /assets/git_commit_message2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_commit_message2.png -------------------------------------------------------------------------------- /assets/git_commit_message3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_commit_message3.png -------------------------------------------------------------------------------- /assets/git_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_diff.png -------------------------------------------------------------------------------- /assets/git_history_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_history_tab.png -------------------------------------------------------------------------------- /assets/git_history_tab_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_history_tab_filter.png -------------------------------------------------------------------------------- /assets/git_history_tab_filter_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_history_tab_filter_example.png -------------------------------------------------------------------------------- /assets/git_more_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_more_shell.png -------------------------------------------------------------------------------- /assets/git_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_pane.png -------------------------------------------------------------------------------- /assets/git_pane_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_pane_added.png -------------------------------------------------------------------------------- /assets/git_push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/git_push.png -------------------------------------------------------------------------------- /assets/github_git_commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/github_git_commands.png -------------------------------------------------------------------------------- /assets/my_new_repo_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/my_new_repo_name.png -------------------------------------------------------------------------------- /assets/new_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/new_repo.png -------------------------------------------------------------------------------- /assets/new_repo_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/new_repo_name.png -------------------------------------------------------------------------------- /assets/project_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/project_files.png -------------------------------------------------------------------------------- /assets/project_screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/project_screen1.png -------------------------------------------------------------------------------- /assets/project_screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/project_screen2.png -------------------------------------------------------------------------------- /assets/project_screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/project_screen3.png -------------------------------------------------------------------------------- /assets/readme_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/readme_commit.png -------------------------------------------------------------------------------- /assets/ssh-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/ssh-key.png -------------------------------------------------------------------------------- /assets/staged_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/assets/staged_readme.png -------------------------------------------------------------------------------- /commit.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/commit.qmd -------------------------------------------------------------------------------- /custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/custom.scss -------------------------------------------------------------------------------- /github.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/github.qmd -------------------------------------------------------------------------------- /github_sync.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/github_sync.qmd -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/index.qmd -------------------------------------------------------------------------------- /installing_git.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/installing_git.qmd -------------------------------------------------------------------------------- /installing_software.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/installing_software.qmd -------------------------------------------------------------------------------- /making_change.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/making_change.qmd -------------------------------------------------------------------------------- /matomo_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/matomo_analytics.html -------------------------------------------------------------------------------- /next_steps.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/next_steps.qmd -------------------------------------------------------------------------------- /rstudio_project.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/rstudio_project.qmd -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/styles.css -------------------------------------------------------------------------------- /updates.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/updates.qmd -------------------------------------------------------------------------------- /version_control.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/version_control.qmd -------------------------------------------------------------------------------- /viewing_history.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmu-osc/Introduction-RStudio-Git-GitHub/HEAD/viewing_history.qmd --------------------------------------------------------------------------------