https://github.com/danilotat/bash_workshop
Simple workshop for practising with Bash and Git from the Sequencing Technologies course of the Bioinformatics and Data Science master course at the University of Siena
https://github.com/danilotat/bash_workshop
bash beginner bioinformatics teaching-materials
Last synced: about 1 year ago
JSON representation
Simple workshop for practising with Bash and Git from the Sequencing Technologies course of the Bioinformatics and Data Science master course at the University of Siena
- Host: GitHub
- URL: https://github.com/danilotat/bash_workshop
- Owner: danilotat
- License: cc0-1.0
- Created: 2025-06-19T08:50:36.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-23T11:03:01.000Z (about 1 year ago)
- Last Synced: 2025-06-23T12:22:14.334Z (about 1 year ago)
- Topics: bash, beginner, bioinformatics, teaching-materials
- Homepage:
- Size: 995 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Context
This repository contains two tasks for the introduction course on Shell and Bash for the Sequencing Techonologies course of the Master in Bioinformatica & Data Science of the University of Siena.
## Prerequisites
- A working installation of git (this will be already present in the server in use).
- Setup your name and your email
```
git config --global user.name "FIRST_NAME LAST_NAME"
git config --global user.email "MY_NAME@example.com"
```
- A Personal Access Token created from the [token page](https://github.com/settings/tokens). When you'll do the push, the command line will ask you to enter your GitHub username and password (it'll ask for the password, but you have to enter the token string, which starts with `ghp_`).
>[!IMPORTANT]
> Place your github token in a safe place.
To create the token, generate a classical-token

Then it'll ask you to choose the set of permissions required. Just place the tick on `repo` like in the image and then create the token.

>[!CAUTION]
>You'll be able to see the token content just one time! So be sure to place it in a safe and accessible place! If for some reason you lose the token, generate another one with the same procedure.