Transcript
Page 1: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

1

RMG Study GroupBasics of Git

Nathan Yee2/23/2015

Page 2: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

2

Key URLs

http://www.github.com/GreenGroup Git repository of all RMG-Py code

http://greengroup.github.io/RMG-Py/ Online version of the current RMG-Py documentation

http://rmg.mit.edu Official RMG-Py documentation, thermodynamics and kinetics

database browser, and web tools http://dev.rmg.mit.edu

Developmental version of rmg.mit.edu with latest features and potential bugs

To use, add 18.172.0.124 dev.rmg.mit.edu to hosts file in your operating system

Page 3: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

3

Git

Git is a version control tool Multiple users can edit multiple copies of code Single user can create multiple branches for a

single repository Online detailed tutorial:

http://git-scm.com/book Where to find programs to help you use git:

http://git-scm.com/downloads

Page 4: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

4

Getting started: create a local repo

Two common scenarios: (only do one of these)a) To clone an already existing repo to your current directory:$ git clone <url> [local dir name]This will create a directory named local dir name, containing a working copy of the files from the repo, and a .git directory (used to hold the staging area and your actual repo)

b) To create a Git repo in your current directory:$ git initThis will create a .git directory in your current directory.Then you can commit files in that directory into the repo:$ git add file1.java$ git commit –m “initial project version”

Page 5: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

5

Basic Git Workflow

1. Modify files in your working directory.2. Stage files, adding snapshots of them to

your staging area.3. Make a commit, which takes the files as

they are in the staging area and stores that snapshot permanently to your Git directory.

Page 6: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

6

Git file lifecycle

Notes:If a particular version of a file is in the git directory, it’s considered committed. If it’s modified but has been added to the staging area, it is staged. If it was changed since it was checked out but has not been staged, it is modified.

Page 7: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

7

Local Commits

1. ‘git status’ to check which files are modified-’git diff <filename>’ shows line-by-line changes

2. ‘git add <filename>’ stages all desired files 3. ‘git commit’ creates new snapshot of staged files

and adds to the history4. ‘git log’ pulls up history of branch; should see your

latest commit

Page 8: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

8

Writing Commit Messages

First line is <80 character summary Followed by detailed description

List of all additions/changes Motivation Implementation details

Examples of bad git messages: “Typo” “Add database entries”

After saving message a unique commit string is created for each entry

Page 9: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

9

Git Branches

Branches start a new history to make experimental features

Allows experimentation without fear of “messing up the code”

Page 10: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

10

Commands used with Branches

Git branch: pulls up a list of all the branches Git branch <new branch>: forks a new from

the current headFrom this commit: Git branch nice_feature

Page 11: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

11

Commands used with Branches

Git checkout <location>: moves the head to location (can be a commit string or branch name)

Git merge <branch>: merges all commits from branch

Git checkout abcd1234 brings you here from

anywhere else

From here:Git merge nice_feature

Commits the nice feature to master

Page 12: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

12

Advanced History Control: Rebase

Normally when merging: make a new commit that incorporates all changes

From experiment: Git rebase master merges and chronologically reorders commits

Page 13: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

13

Full Control: Git rebase interactive

Git rebase –i <commit string>: opens interactive GUI that allows full rewriting of history Delete or reorder commits Squash commits together Make changes to a commit Rewrite commit messages

WARNING: do not use this to rewrite history you have pushed to official

Page 14: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

14

Green Group Repos

Official Green Group Repo

• https://github.com/GreenGroup/• For official distribution

Personal Github Repo

-Sharing developments with other users-Back up of in-progress code

Local Repositories

-Running jobs-Code development and debugging

Git

push

Pull

Requ

est

Git pull G

it pull

Page 15: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

15

Setting up Remote Repos

Git remote add <remote name> <url>

If you originally forked from GreenGroup official: Git remote rename origin official Create your own fork on Github and name origin

Page 16: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

16

Pulling/Pushing Commits

Each repo has its own branches Commands for pulling and pushing call

branches Most common call: git pull official master For pushing: git push origin new_feature

Good idea to try to keep branch names consistent

Page 17: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

17

Keeping Official Repo Clean

To push a commit to official:1. Clean up your commit history with Git rebase –i

<first new commit>2. Check that your current commit is updated up to

the official Git pull –rebase official master3. Push to your personal GitHub repo: Git push

origin new_feature4. Make formal pull request from your GitHub

Repo

Page 18: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

18

Common Git commands

Page 19: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

19

You can do all of this using Git-cola: a powerful GUI interface

Commit or revert specific lines. Stage files and write commit messages graphically. Amend commits.

Page 20: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

20

Git-cola: a powerful GUI nterface

Visualize past commit history and repository branches. (Great for tracking specific code changes.)

Available for Windows, Mac, and Linux!

Page 21: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

21

Questions?

Page 22: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

22

Page 23: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

23

Sphinx

Tool for creating intelligent and beautiful documentation

Output formats in both HTML and LaTeX PDF Uses reStructuredText as its markup language

Page 24: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

24

RMG-Py documentation

Located in RMG-Py/documentation folder How to build:

Run ‘make documentation’ in parent RMG-Py folder will build the HTML pages

Or, go to documentation folder and run ‘make html’ to make HTML pages or ‘make latexpdf’ to create the pdf version of the documentation

Edit the files inside the documentation/source folder

Page 25: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

25

reStructuredText Basics Primer for reS:

http://sphinx-doc.org/rest.html#rst-primer Example of Sphinx markup:

Page 26: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

26

Example markup converted to HTML:

Page 27: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

27

Using python function references in documentation

Function comments can be imported to Sphinx documentation automatically

ORIGINAL CODERMG-Py/rmgpy/statmech/vibration.pyx

Page 28: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

28

DOCUMENTATION SOURCERMG-Py/documentation/source/reference/statmech/harmonicoscillator.rst

This line pulls original function docstring into documentation automatically

… but you can append on more information or equations than the docstring by writing additional documentation here

Page 29: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

29

DOCUMENTATION HTML PAGERMG-Py/documentation/build/html/reference/statmech/harmonicoscillator.rst

This page has the combined python docstring information as well as the extra documentation you added

NOTE: The official github documentation pages for RMG-Py automatically update when changes are made to the code docstrings, so you don’t have to do any extra work

Page 30: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

30

Steps for writing RMG-Py documentation

1. Create and edit new documentation pages (.rst files) locally. Use code references where appropriate to save time.

2. Build html pages locally to preview that the pages are satisfactory in layout.

3. Use git to commit the source .rst files that you modified to the RMG-Py github repository.

4. You are done! Official RMG-Py documentation pages will be updated automatically.

Page 31: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

31

webRMG

Page 32: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

32

webRMG

URLs: Official version: http://rmg.mit.edu Development (newer) version: http://dev.rmg.mit.edu

Make RMG’s databases more transparent, accessible, and modifiable

Web tools for visualizing kinetics and reactions more easily

Built on a Django python framework which queries the RMG-Py code itself!

Page 33: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

33

Features

Page 34: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

34

Editing or adding new rates or thermo data to the database Edit source online with account Changes make an automatic commit on github

Commit gets reviewed by Green Group members before being published to official

Export database for RMG-Java Converts RMG-Py database to RMG-Java database

format Exports current version of database on website in .zip

or .tar.gz format

Page 35: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

35

Use any identifier and convert it to an adjacency list used in RMG SMILES InChI Common chemical names

Preview molecule while editing adjacency list View molecule data:

Molecular weight, identifiers, thermo

Page 36: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

36

Compare kinetics in model with kinetics found in RMG’s databases Displays matching reaction library results, rate

estimates from RMG-Java and RMG-Py, identifies rate rule contributions, links to sources

Toolbar for searching NIST database automatically fills in reactant and product fields

Compare rates at a given T

Page 37: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

37

Model visualization (RMG-Py and Java friendly) Visualize a model generated from RMG using its chemkin

file and RMG dictionary on HTML page Clicking any reaction link searches RMG database for

reaction kinetics Clicking on any molecule’s image gives additional info

and link to thermochemistry Model comparison (RMG-Py and Java friendly)

Compare two models against each other Identify common vs. unique species and reactions Identify similarities or differences in thermo and kinetics

Page 38: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

38

Flux diagram generation (RMG-Py and Java friendly) Create video of a reaction network using RMG

condition file, chemkin file, and RMG dictionary Can optionally use chemkin output file for a non-

isothermal simulation (may currently be broken) Populate Reactions (RMG-Py only)

Generate a list of all reactions occurring given a set of initial species listed in a condition file (produces the set of edge reactions in a simulation)

Page 39: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

39

Plot forward and reverse kinetics (RMG-Py and Java friendly) Use chemkin file and RMG dictionary (optional) to

generate plots of forward and reverse reaction kinetics Create RMG-Java Kinetics Library

Convert a chemkin file and RMG dictionary into a RMG-Java kinetics library

Merge models Generate merged chemkin file and RMG dictionary for

2 models

Page 40: RMG Study Group Basics of Git Nathan Yee 2/23/2015 1

40

Create Input File (RMG-Py only) (may currently be broken) Use web form to generate input file for a RMG job

or modify an existing input file More user friendly and less error prone than

working with source code Provides filled-in values as recommendations for

advanced options in the input file


Recommended