Skip to content
Snippets Groups Projects
jarunanp's avatar
jarunanp authored
d44cbe96
History

Download the folder

$ git clone https://sissource.ethz.ch/jarunanp/tutorial-schlumberger-software.git
$ cd tutorial-schlumberger-software

Change to work on the develop branch

$ git checkout develop
$ git branch

* develop
  master

Open the HTML file with a text editor (e.g. emacs) and modify the file

$ emacs tutorial_schlumberger_software.html

See the slides with a browser, for example, with firefox

$ firefox tutorial_schlumberger_software.html

Convert the slides to PDF

$ sh create_PDF.sh

See which files have been changed

$ git status

On branch develop
Your branch is up to date with 'origin/develop'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        modified:   tutorial_schlumberger_software.html
        modified:   tutorial_schlumberger_software.pdf

Commit the changes to your local git

$ git commit -am "update tutorial"

Push the commited changes to the remote repo

$ git push origin develop