Skip to content
Snippets Groups Projects
Commit 9270950d authored by Daniel Duarte's avatar Daniel Duarte
Browse files

remove attendees and shorten README

parent 1843b6c7
No related branches found
No related tags found
No related merge requests found
......@@ -2,28 +2,6 @@
# Advanced git course - Practice repository
## How to get started?
- Fork this repository by clicking on the `Fork` button on the top right of this page.
- Clone your forked repository to your local computer.
:warning: **Make sure that you have your SSH key and `git` properly configured**.
```bash
$ git clone git@github.com:<yourName>/advanced-git-practice.git
```
## Create your own branch
The development scheme is based on a stable `master` branch and a development branch named `develop`.
Before making changes, create your own branch from `develop`:
```bash
$ cd advanced-git-practice
$ git checkout develop # this switches the branch to develop
$ git checkout -b myBranch # this checks out a new branch called myBranch
```
## Make your changes
Copy the file `template.md` in the folder `_attendees` and rename it with your firstname:
......
---
layout: default
name: Sylvain Arreckx
position: Mathematician
group: None
institution: Lifeware
ghurl: https://github.com/syarra
ghimg: https://avatars2.githubusercontent.com/u/816318
---
<a href="{{ page.ghurl }}"><img src="{{ page.ghimg }}" height="150px"/></a>
# {{ page.name }}
{{ page.name }} is a {{ page.position | downcase }} at {{ page.institution }}.
<a href="{{ site.baseurl }}">back</a>
---
layout: default
name: Valentin Grouès
position: Sitting
group: BioCore
institution: University of Luxembourg
ghurl: https://github.com/neoflex
ghimg: https://avatars2.githubusercontent.com/u/888151
---
<a href="{{ page.ghurl }}"><img src="{{ page.ghimg }}" height="150px"/></a>
# {{ page.name }}
{{ page.name }} is {{ page.position | downcase }} in the {{ page.group }} at the {{ page.institution }}.
<a href="{{ site.baseurl }}">back</a>
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