Skip to content

Commit 1df9c63

Browse files
committedJun 4, 2017
Finalize the post.
1 parent e4fea6e commit 1df9c63

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed
 

‎_posts/2017-05-22-git-remote-and-github.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tags:
1111
- conflict-resolving
1212
categories: work-efficiency
1313
---
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.***
1515
***This tutorial is adapted from [the Software Carpentry workshop](http://swcarpentry.github.io/git-novice/07-github/) under the Creative Commons license.***
1616

1717
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
130130
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`.
131131

132132

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:
134134

135135
![GitHub Repository After First Push]({{site.baseurl}}/assets/img/github-repo-after-first-push.png)
136136

@@ -182,7 +182,7 @@ How would you get that same information in the shell?
182182

183183
Now, let's see some functions that are only available using GitHub and other remote services.
184184
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.
186186
What we are exploring here are the features that really make collaboration easy.
187187
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*.
188188

@@ -247,19 +247,20 @@ git checkout -b gh-pages
247247
git push origin gh-pages
248248
```
249249
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.
252252

253253
## 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.
255255
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.
258258
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.
259260

260261
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.
262263
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.
264265

265266
Hopefully, this helps you on deciding which git remote server you want to use for your repos.

0 commit comments

Comments
 (0)
Please sign in to comment.