digitales-handwerkszeug/04-lc-git.ipynb

88 lines
1.6 KiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 4. Library Carpentry: Git"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<https://librarycarpentry.org/lc-git/>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Setup"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Account bei GitHub einrichten"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Für diese Lehreinheit benötigen Sie einen kostenlosen Account bei GitHub. Bitte registrieren Sie sich unter <https://github.com/join>."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Git konfigurieren\n",
"\n",
"Ergänzen Sie zwischen den Anführungsstrichen ihren Namen bzw. ihre E-Mail-Adresse, mit der Sie sich bei GitHub registriert haben."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"git config --global user.name \"\"\n",
"git config --global user.email \"\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Los geht's..."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Bash",
"language": "bash",
"name": "bash"
},
"language_info": {
"codemirror_mode": "shell",
"file_extension": ".sh",
"mimetype": "text/x-sh",
"name": "bash"
}
},
"nbformat": 4,
"nbformat_minor": 2
}