-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Milton Choo
committed
May 13, 2020
1 parent
98f3aac
commit 1b6821c
Showing
11 changed files
with
45 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
title: bitbucket/gitlab users | ||
author: milton choo | ||
--- | ||
upload to ntu-rris from bitbucket/gitlab | ||
|
||
|
@@ -8,11 +9,14 @@ please ensure the following: | |
|
||
* your github account has 2FA with NTU's enterprise authentication server | ||
* your new repository is created on ntu-rris central repository | ||
* Add RRIS's github URL as a "SSH" connection to ntu-rris's with name as "rris" | ||
* optional but highly recommended that you get Single-Sign-On (SSO) to work with github | ||
* on your local git repository, add RRIS's github URL as a "SSH" connection to ntu-rris's with name as "rris", assuming the origin name was taken for bitbucket or gitlab. | ||
{% highlight ruby %} | ||
$ git remote add rris ssh://[email protected]/ntu-rris/yournewrepositoryname.git | ||
{% endhighlight %} | ||
* push the master branch using this command | ||
{% highlight ruby %} | ||
$ git push rris master | ||
{% endhighlight %} | ||
|
||
it is also recommended that you update the central repository at least weekly for all your active projects |
18 changes: 18 additions & 0 deletions
18
_posts/2020-05-02-recommendation-for-markdown-documentation-format.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
author: milton choo | ||
--- | ||
this is just a recommendation for markdown, please use whatever format you | ||
like, as the crucial factor is any documentation is better than none at all | ||
|
||
however, there are several advantages for using *markdown* | ||
* supported by Github and Bitbucket | ||
* supported in most of the languages you will write in | ||
* you can write it immediately in your code editor | ||
* there are serveral nice tools to convert markdown to any format you like | ||
* its easier than reST(i know most of you love python) but i digress | ||
|
||
|
||
|
||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
// warning: no frontmatter in _sass/files | ||
body { | ||
padding-top: 0px; | ||
margin-top: 0px; | ||
} | ||
.current { | ||
color: green; | ||
|
||
main { | ||
margin-top: 5px; | ||
} | ||
|
||
.navbar { | ||
padding-bottom: 0px; | ||
margin-bottom: 0px !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
--- | ||
@import "main"; //import from _sass | ||
@import "myapp"; //import from _sass | ||
@import "native.css"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
layout: home | ||
title: RRIS | ||
--- | ||
please visit our official website | ||
[Rehabilitation Research Institute of Singapore](http://rris.ntu.edu.sg) |