tmux new [-s name] [cmd](:new) - new session
tmux ls(:ls) - list sessionstmux switch [-t name](:switch) - switches to an existing session
| git reset 56e05fced #resets index to former commit; replace '56e05fced' with your commit code | |
| git reset --soft HEAD@{1} #moves pointer back to previous HEAD | |
| git commit -m "Revert to 56e05fced" | |
| git reset --hard #updates working copy to reflect the new commit |
These commands were taking from the talk Introduction to Advanced Bash Usage by James Pannacciulli
Updated 21 Jan 2017 06:54:53
The IPython Notebook has two different keyboard input modes. Edit mode allows you to type code/text into a cell and is indicated by a green cell border. Command mode binds the keyboard to notebook level actions and is indicated by a grey cell border.
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Bootstrap 3.0 Grid System</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- Latest compiled and minified CSS --> | |
| <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | |
| <style> | |
| body{ |