Stash current changes
- git > Stash > Stash (Include Untracked)
Create stash as patch
git stash show "stash@{0}" -p > changes.patchApply patch
| git checkout dev some-file-or-folder |
| https://help.github.com/en/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line |
| # Create latest stash into a file | |
| git stash show "stash@{0}" -p > changes.patch | |
| # Apply stash | |
| git apply changes.patch |
| import { computation } from './common' | |
| /** | |
| * @var int represents the maximum safe integer in JavaScript | |
| */ | |
| const maxINT = Number.MAX_SAFE_INTEGER; | |
| /** | |
| * ------------------------------------------------------ | |
| * Annual Tax Table |
| ;[XDebug] | |
| ;; Only Zend OR (!) XDebug | |
| zend_extension="D:/wampstack/php\ext\php_xdebug.dll" | |
| xdebug.remote_autostart = 1 | |
| xdebug.remote_enable=true | |
| ; xdebug.remote_host=127.0.0.1 | |
| ; xdebug.remote_port=9000 | |
| ; xdebug.remote_handler=dbgp | |
| xdebug.profiler_enable=1 | |
| xdebug.profiler_output_dir= "C:\Windows\Temp" |
| public class Program | |
| { | |
| public static void Main(string[] args) | |
| { | |
| var seed = args.Contains("/seed"); | |
| if (seed) | |
| args = args.Except(new[] { "/seed" }).ToArray(); | |
| var host = BuildWebHost(args); |
| 'atom-text-editor': | |
| 'alt-shift-F': 'editor:auto-indent' |