Indie Game Developer/Designer, trying to dive into the world of Physics, Mathematics and Astronomy. Die hard fan of Relativity Theory & anything related to numbers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Modal } from 'react-bootstrap' | |
| import ModalDialog from 'react-bootstrap/lib/ModalDialog' | |
| class DraggableModalDialog extends React.Component { | |
| render() { | |
| return <Draggable handle=".modal-title"><ModalDialog {...this.props} /></Draggable> | |
| } | |
| } | |
| // enforceForce=false causes recursion exception otherwise.... |
- Install zsh from cygwin
- Install oh-my-zsh from https://github.com/robbyrussell/oh-my-zsh . Follow the manual instructions
- To make zsh default on ConEmu, create a task with
C:\cygwin64\bin\mintty.exe /usr/bin/zsh -. Make it the defaut shell. - To start a zsh shell on demand, add this batch script to your path or start menu or wherever.
start C:\cygwin64\bin\mintty.exe /usr/bin/zsh -This is a SCRIPT-8 cassette.
This is a SCRIPT-8 cassette.
This is a SCRIPT-8 cassette.
This is a SCRIPT-8 cassette.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) Create a branch with the tag | |
| git branch {tagname}-branch {tagname} | |
| git checkout {tagname}-branch | |
| 2) Include the fix manually if it's just a change .... | |
| git add . | |
| git ci -m "Fix included" | |
| or cherry-pick the commit, whatever is easier | |
| git cherry-pick {num_commit} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Git = require('nodegit'); | |
| let shouldProceed = true; | |
| let dataArray = []; | |
| const authorEmail = "[email protected]"; | |
| const lastCommitSHA = 'sdfsdfs'; // hardcoded latest git commit ID | |
| const commitTillSHA = 'sdfsfdsfsdf'; // hardcoded commit id till we want the report for | |
| Git.Repository.open('/home/myname/Documents/projects/mygitrepo') // your local repository path | |
| .then((repository) => { |