Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tissue Research JKU
Tissue Research Doc
Commits
cfe154a5
Commit
cfe154a5
authored
Apr 13, 2022
by
Sabina Köfler
Browse files
Minor corrections
parent
7b38f408
Pipeline
#1819
passed with stage
in 2 minutes and 27 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
de/README.md
View file @
cfe154a5
...
...
@@ -4,17 +4,17 @@ Hier findest du die gesamte Dokumentation zu den Tools der Arbeitsgruppe "Tissue
## Diese Dokumentation beinhaltet
*
Quick Start Guide Pannoramic SCAN II
:
*
**
Quick Start Guide Pannoramic SCAN II
**
Dabei handelt es sich um eine Kurzfassung des Scannerhandbuchs.
Es soll dir einen schnellen Einstieg in die Benutzung des Scanners geben und behandelt die wichtigsten Funktionen des Scanners.
*
Quick Start Guide TMA Grand Master
*
**
Quick Start Guide TMA Grand Master
**
Dabei handelt es sich um eine Kurzfassung des Handbuchs des TMA Grand Master.
Es soll dir einen schnellen Einstieg in die Benutzung des Tissue Micro Arrayers geben und behandelt die wichtigsten Funktionen des Geräts.
*
Get started with Git & GitLab
*
**
Get started with Git & GitLab
**
Ein Git Cheat Sheet
Ein Git Cheat Sheet
(english only)
\ No newline at end of file
de/get_started_with_git.md
0 → 100644
View file @
cfe154a5
# Learn how to use git
## check your local working directory for changes
```
git status
```
## if 'nothing to commit, working tree clean' get the changes from remote repository
```
git pull origin master (or main)
```
## if you want to start fresh from the remote repo
```
git reset --hard origin/master (or origin/main)
```
<https://stackoverflow.com/a/38784578>
## work now! after you have made changes
```
git add [specify filename]
```
or add ALL
```
git add .
```
## work some more! if done
```
git add . (optional)
```
```
git commit -m "Write message"
```
## see the difference you made
```
git diff origin main
```
## send your changes to the remote repository
```
git push
```
## if someone has changed something in the meantime you will get notified
```
git pull
```
then
```
git push
```
## automatically close an open issue when pushing a commit
```
git commit -m "Sort more efficiently" -m "Closes #[INSERT_ISSUE_NO]]"
```
```
git push
```
en/README.md
View file @
cfe154a5
...
...
@@ -4,17 +4,17 @@ Here you can find the complete documentation of the tools of the working group "
## This documentation includes
*
Quick Start Guide Pannoramic SCAN II
:
*
**
Quick Start Guide Pannoramic SCAN II
**
This is an abridged version of the scanner manual.
It is intended to give you a quick introduction to the use of the scanner and covers the most important functions of the scanner.
*
Quick Start Guide TMA Grand Master
*
**
Quick Start Guide TMA Grand Master
**
This is a short version of the TMA Grand Master manual.
It is intended to give you a quick start in using the Tissue Micro Arrayer and covers the most important functions of the device.
*
Get started with Git & GitLab
*
**
Get started with Git & GitLab
**
A Git Cheat Sheet
\ No newline at end of file
en/SUMMARY.md
View file @
cfe154a5
...
...
@@ -4,6 +4,6 @@
## Quick Start Guides
*
[
Quick Start Guide Pannoramic SCAN II
](
quick-start-guide-pannoramic-scan-ii
_em
.md
)
*
[
Quick Start Guide TMA Grand Master
](
quick-start-guide-tma-grand-master
_en
.md
)
*
[
Quick Start Guide Pannoramic SCAN II
](
quick-start-guide-pannoramic-scan-ii.md
)
*
[
Quick Start Guide TMA Grand Master
](
quick-start-guide-tma-grand-master.md
)
*
[
Get started with git
](
get_started_with_git.md
)
\ No newline at end of file
en/quick-start-guide-pannoramic-scan-ii
_en
.md
→
en/quick-start-guide-pannoramic-scan-ii.md
View file @
cfe154a5
File moved
en/quick-start-guide-tma-grand-master
_en
.md
→
en/quick-start-guide-tma-grand-master.md
View file @
cfe154a5
File moved
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment