Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • lianov/gitlab_demo
  • ryanbrownlee17/gitlab_demo
2 results
Show changes
Commits on Source (18)
# Sample of .gitignore; will ignore OS generated file
# more examples: https://gist.github.com/octocat/9257657
.DS_Store
\ No newline at end of file
File added
#### Doc page
#### Sample documentation page
Sample doc page. Accepts markdown `syntax`
Accepts markdown syntax such as `this`. FYI, click [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) for a markdown cheat sheet if you are unfamiliar. If you truly want your research to be reproducible, a good documentation page is a __must__!
The `GitLab_presentation.pdf` contains the slides I will show. However, a good section of this presentation will be shown from a live demostration since showing GitLab's graphical interface and an intro to the git commands are the goals of this talk.
The script `demo.sh` is just a mock-up script. The purpose is just to show the git features that will be discussed in the presentation: GitLab groups, `clone`, `commit` (the several ways of doing this), `push`, `branch`, and the interpretation of git's history within the repo. May touch upon other features such as `fork`, `.gitattributes`, `.gitignore`,`git tag` etc..., but very broadly due to time.
\ No newline at end of file
......@@ -2,3 +2,13 @@
echo "demo test for gitlab"
echo "printing working directory, `pwd`"
echo "line added locally after cloning, and then committed and pushed to GitLab"
# A good FYI about the Atom editor:
# changes below were made in Atom, staged, committed and pushed directly from Atom
echo "printing current date and time"
date
#----- This represents finalized code ready to be merged --------
\ No newline at end of file