|
11 | 11 | - conflict-resolving
|
12 | 12 | categories: work-efficiency
|
13 | 13 | ---
|
14 |
| -***Work In Progress! This post is part of the [2017 CQuIC computing summer workshop tutorial materials](https://cquic.github.io/summer17-computing-workshop/).*** |
| 14 | +***This post is a part of the [2017 CQuIC computing summer workshop tutorial materials](https://cquic.github.io/summer17-computing-workshop/) with the audio records available from the linked website. Please download the [lesson material](https://github.com/CQuIC/summer17-computing-workshop/releases/download/s3/session-3.zip) in order to run the examples used in this lesson.*** |
15 | 15 | ***This tutorial is adapted from [the Software Carpentry workshop](http://swcarpentry.github.io/git-novice/07-github/) under the Creative Commons license.***
|
16 | 16 |
|
17 | 17 | Version control really comes into its own when we begin to collaborate with
|
@@ -130,7 +130,7 @@ git remote set-url origin https://i2000s@github.com/testwebsite.git
|
130 | 130 | If you want not to type your password every time neither, you can replace the url to origin in the formation of `https://i2000s:YOURPASSWORD@github.com/testwebsite.git`.
|
131 | 131 |
|
132 | 132 |
|
133 |
| -Up to now, our local and remote repositories are now in this state: |
| 133 | +Up to now, our local and remote repositories are in this state: |
134 | 134 |
|
135 | 135 | 
|
136 | 136 |
|
@@ -182,7 +182,7 @@ How would you get that same information in the shell?
|
182 | 182 |
|
183 | 183 | Now, let's see some functions that are only available using GitHub and other remote services.
|
184 | 184 | On your web browser, go to [https://github.com/CQuIC/dont-forget-names](https://github.com/CQuIC/dont-forget-names).
|
185 |
| - This is the ***Don't Forget Names*** equation table put on in the CQuIC coffee room with the initiative by Josh Combes and other CQuIC students. |
| 185 | + This is the ***Don't Forget Names*** equation table put on the wall in the CQuIC coffee room with the initiative by Josh Combes and other CQuIC students. |
186 | 186 | What we are exploring here are the features that really make collaboration easy.
|
187 | 187 | As shown in the figure above or the GitHub interface you see on your web browser, the line below the repo's name includes a few menu buttons named as *Code*, *Issues*, *Pull Requests*, *Wiki*, *Settings* and *Insights*.
|
188 | 188 |
|
@@ -247,19 +247,20 @@ git checkout -b gh-pages
|
247 | 247 | git push origin gh-pages
|
248 | 248 | ```
|
249 | 249 | This will create a new branch called `gh-pages` and push it to the remote repository.
|
250 |
| -As a result, GitHub renders your markdown code into HTML files using a Jekyll engine and generates a static website at `https://i2000s.github.io/testwebsite`. |
251 |
| -You can view it on your webbrowser. |
| 250 | +As a result, GitHub renders your markdown or HTML template/segment codes into HTML files using a Jekyll engine and generates a static website at `https://i2000s.github.io/testwebsite`. |
| 251 | +You can view it on your web browser. |
252 | 252 |
|
253 | 253 | ## Comparison among remote repository hosting service providers
|
254 |
| -Before we jump into GitHub even more, let's talk about briefly on the similarities and differences among popular git remote service providers as mentioned at the beginning. |
| 254 | +Before we jump into GitHub even more, let's talk about briefly on the similarities and differences among popular git remote service providers as mentioned at the beginning of this tutorial. |
255 | 255 | A detailed comparison among GitHub, BitBucket, GitLab and Coding can be found [here](https://medium.com/flow-ci/github-vs-bitbucket-vs-gitlab-vs-coding-7cf2b43888a1).
|
256 |
| -We have created a GitHub organization for CQuIC so that we are granted with infinite number of private repos free of charge as a research and educational body. |
257 |
| -Feel free to best use of it through the [CQuIC@GitHub](https://github.com/CQuIC) interface. |
| 256 | +We have created a GitHub organization for CQuIC so that we can create infinite number of private repos free of charge as a research and educational body. |
| 257 | +Feel free to best use this opportunity through the [CQuIC@GitHub](https://github.com/CQuIC) interface. |
258 | 258 | Similarly, there is also a [CQuIC organization](https://gitlab.com/CQuIC) on GitLab in case we need some extra benefit besides GitHub.
|
| 259 | +GitLab is more generous on large file storage than GitHub, but still caps at 10GB of total space for each repo. |
259 | 260 |
|
260 | 261 | The [UNM GitLab server](https://libutil.unm.edu/users/sign_in) is a community version of the GitLab open-source tool installed on an UNM server.
|
261 |
| -Compared to others, the UNM GitLab service is good at hosting [Git large files](https://about.gitlab.com/2015/11/23/announcing-git-lfs-support-in-gitlab/). |
| 262 | +Compared to others, the UNM GitLab service is good at hosting [Git large files](https://about.gitlab.com/2015/11/23/announcing-git-lfs-support-in-gitlab/), which I don't see if there is a real cap. |
262 | 263 | So, it could be helpful to manage repos with data files without obvious limitations.
|
263 |
| -But the total number of repos one can have on the server is limited (up to 10); since the service is associated with UNM NetIDs, it's not clear in the documentations how the repos be treated once a student repo owner graduates from UNM. |
| 264 | +But the total number of repos one can have on the server is limited (up to 10); also, since the service is associated with UNM NetIDs, it's not clear in the documentations how the repos be treated once a student repo owner graduates from UNM. |
264 | 265 |
|
265 | 266 | Hopefully, this helps you on deciding which git remote server you want to use for your repos.
|
0 commit comments