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
2aa4f328
Commit
2aa4f328
authored
Apr 13, 2022
by
Sabina Köfler
Browse files
Rearrange documents
parent
5566cf8c
Pipeline
#1815
passed with stage
in 2 minutes and 34 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
quick-start-gui
de
s
/quick-start-guide-pannoramic-scan-ii.md
→
de/quick-start-guide-pannoramic-scan-ii.md
View file @
2aa4f328
File moved
quick-start-gui
de
s
/quick-start-guide-tma-grand-master.md
→
de/quick-start-guide-tma-grand-master.md
View file @
2aa4f328
File moved
quick-start-guides
/get_started_with_git.md
→
en
/get_started_with_git.md
View file @
2aa4f328
## 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
<
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
```
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