You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-10
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,16 @@
2
2
Welcome to our GitHub workshop. Get ready to learn all about the basics of using GitHub. Below are list of useful links and commands that we'll be using throughout this workshop. If you'd like to see our full presentation [click here](https://docs.google.com/presentation/d/e/2PACX-1vSJ3RUco-cA7sxMaIPcdS86nhlFSYUD4YOYhlSQD5I2RuCsCpAbUHk2ziOIeqBZy34ISkOd5ozTpcPX/pub?start=true&loop=false&delayms=5000"Workshop Presentation")
3
3
4
4
# Pre Test
5
-
Before you get started, please complete this quick survey: http://bit.do/gho-presurvey
5
+
Before you start, you should've completed the pre-workshop survey shown in the presentation.
Forking is a **GitHub** feature that creates a copy of a repository in your account. Begin by going the repository's web page.
27
+
Forking is a **GitHub** feature that creates a copy of some repository into a specified account that you have access to. Begin by going to that repository's web page.
28
28
1. Fork to your personal account by clicking the **"Fork"** button in the upper right hand corner.
29
29
2. Invite your teammates to join your forked repository by going to the **"Settings"** page of the repository.
30
30
3. Select the **"Collaborators"** tab from the sidebar on the left and enter your teammates' usernames.
Copies a GitHub Repo from GitHub onto your computer. This creates the working directory, staging area, and Git Repo for you, so you don't need to init.
34
+
33
35
Copy the **HTTPS** URL from the repository. Before you use this URL, be sure to change to the directory where you'd like for the repository to be saved on your local machine. The sequence of events
34
36
35
37
```
@@ -86,7 +88,7 @@ What exists on the remote git repository.
86
88
Simply delete the conflict markers and the line you don't need (or don't delete either line if you'd like to keep both).
87
89
88
90
# Post Test
89
-
Now, please complete this quick survey: http://bit.do/gho-postsurvey
91
+
When you finsh, you should completed the post-workshop survey shown in the presentation.
@@ -95,10 +97,10 @@ It does **NOT** automatically put itself onto GitHub.
95
97
96
98
First, create a directory that you'd like to turn into a git repository. Change to that directory and make some files. Finally, initalize the directory into a git repository!
97
99
```
98
-
mkdir <folder_name>
99
-
cd <folder_name>
100
-
touch <file_name>
101
-
git init
100
+
mkdir example-folder # Creates a directory
101
+
cd example-folder # Changes into that directory
102
+
touch random-file.txt # Creates a random .txt file
103
+
git init # Initializes this directory into a Git Repository
102
104
```
103
105
104
106
For your local Git repository to exist on GitHub you have to go the GitHub's website and create a new repository. On the [GitHub homepage](https://github.com/"GitHub HomePage"), click the **"New repository"** button on the lower right hand corner. Copy the URL from this new repository to use in the following commands:
0 commit comments