Skip to content
Snippets Groups Projects
Commit 92d552df authored by Mitalee Parikh's avatar Mitalee Parikh
Browse files

font?

parent dbac518b
No related branches found
No related tags found
No related merge requests found
Pipeline #244424 passed
......@@ -41,44 +41,42 @@ One way to log on to Fabcloud is use login credentials from fablabs.io. That is
1. Install Git on your local computer.
Install Git through the command line - Terminal app (macOS).
Install Git through the command line - Terminal app (macOS).
Install [Homebrew](https://brew.sh/), a package manager using the instructions on the website.
![](./images/pppm/brew.png)
and then
`brew install git`
There are other ways to install git as mentioned on the website too.
Ref: [](https://git-scm.com/download/mac)
Install [Homebrew](https://brew.sh/), a package manager using the instructions on the website.
![](./images/pppm/brew.png)
and then
`brew install git`
2. Configure user
There are other ways to install git as mentioned on the website too.
To configure your user from scratch, in your terminal, add your Git username and set your email for uploading
`git config --global user.name "mitalee.parikh"`
`git config --global user.email "emaitee@gmail.com"`
This helps in tracking who makes the changes on the shared gitlab repo which is public.
Ref: https://git-scm.com/download/mac
3. Generate SSH key
2. Configure user
Check if you have an SSH KEY already
`cat ~/.ssh/id_rsa.pub`
If not, generate it using
`ssh-keygen -t rsa -C "emaitee@gmail.com"`
Then use the above command to view your public key and copy it.
Upload this key on the Gitlab Website onthe browser. Go to user profile > Settings > SSH keys and copy it there.
Now, your Gitlab server is securely linked to your local computer.
To configure your user from scratch, in your terminal, add your Git username and set your email fro uploading
`git config --global user.name "mitalee.parikh"`
`git config --global user.email "emaitee@gmail.com"`
This helps in tracking who makes the changes on the shared gitlab repo which is public.
3. Generate SSH key
Check if you have an SSH KEY already
`cat ~/.ssh/id_rsa.pub`
If not, generate it using
`ssh-keygen -t rsa -C "emaitee@gmail.com"`
Then use the above command to view your public key and copy it.
Upload this key on the Gitlab Website onthe browser. Go to user profile > Settings > SSH keys and copy it there.
Now, your Gitlab server is securely linked to your local computer.
4. Start a git repository
There are several ways to make a repository:
1. On the GitLab website, create a repository and then clone it locally.
2. In the terminal initialising it from scratch using `git init` by changing current directory to desired location.
3. Cloning an existing one.
Since out student repos on GitLab already have a default template installed, we can directly clone it on our local computer, wherever you want to store your documentation.
Your student repo consists of the default student template. First task is to clone this existing template to your local repo. After you cd to your local repo, use this to clone.
`git clone git@gitlab.fabcloud.org:academany/fabacademy/2020/labs/barcelona/students/mitalee-parikh.git`
Now, you have made a clone of the template on your local repository.
![](./images/pppm/clone.png)
There are several ways to make a repository:
1. On the GitLab website, create a repository and then clone it locally.
2. In the terminal initialising it from scratch using `git init` by changing current directory to desired location.
3. Cloning an existing one.
Since out student repos on GitLab already have a default template installed, we can directly clone it on our local computer, wherever you want to store your documentation.
Your student repo consists of the default student template. First task is to clone this existing template to your local repo. After you cd to your local repo, use this to clone.
`git clone git@gitlab.fabcloud.org:academany/fabacademy/2020/labs/barcelona/students/mitalee-parikh.git`
Now, you have made a clone of the template on your local repository.
![](./images/pppm/clone.png)
4. Basic workflow and repository structure
---
......
File added
@font-face {
font-family: "<HelveticaNeue>";
src: "./assets/HelveticaNeue.ttc";
}
......@@ -13,7 +13,7 @@ theme:
primary: white
accent: white
font:
text: Ubuntu
text: false
code: Roboto Mono
features:
tabs: false
......@@ -59,3 +59,6 @@ markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
extra_css:
- stylesheets/extra.css
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment