- Configure tasks
- Paste from below
- Ctrl+Shift+B on an HTML file
ToC:
- [Hello `make`](#hello-make)
## Hello `make`
#!/bin/bash | |
# Repo merge script used to merge OLD_REPO into TARGET_REPO. | |
# Based on https://gofore.com/merge-multiple-git-repositories-one-retaining-history/ | |
# How to use: | |
# | |
# 1. Create a temp directory | |
# 2. Checkout TARGET_REPO and OLD_REPO there | |
# 3. Put this script into the temp directory, side by side with the repos. |
👋 Moved to https://github.com/borekb/docker-path-workaround
UPDATE 07/2018: I switched from Git Bash to MSYS2 recently which should be very similar, if not the same, but there some subtle differences which made me realize this is more tricky than I thought and that I don't 100% understand what is going on. If someone can help, please let me know in the comments.
Invoking docker
in MSYS2 shell or Git Bash typically fails with complains about paths, for example:
In my experience, the biggest practical hurdle when running a mix of native and MSYS2 programs is related to tty / pty. I wish I understood perfectly what is going on but at least I think I can explain the problem and what are the options. When I learn more, I'll be happy to update this post.
When you run a shell of your choice like bash.exe
or zsh.exe
, you have three main options:
- Run it in the mintty terminal.
- Run it in Windows console ("cmd.exe").
# Finder: show full path in title | |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true | |
# Finder: show all filename extensions | |
defaults write NSGlobalDomain AppleShowAllExtensions -bool true | |
# Finder: show status bar | |
defaults write com.apple.finder ShowStatusBar -bool true | |
# Finder: allow text selection in Quick Look |
(Note: this is a rough draft of a blog post I'd like to publish to https://versionpress.com/blog.)
Local by Flywheel is a great way to run WordPress sites locally. Here is how you can experiment with VersionPress using this tool.
(Note: You'll be able to try change tracking, undo, restore and other features of VersionPress but not its cloning and merging features which require two environments to work with.)
First, create a new site in Local. I'd also recommend enabling HTTPS for good measure (modern browsers will be happier). Local makes this super-easy, just click the Trust button on the SSL tab and update the site's URL (I prefer to do that via WP-CLI, open the SSH session as shown below and execute something like wp search-replace --all-tables http://vp-demo.local https://vp-demo.local
).
#!/usr/bin/env bash | |
# Installs symlinks to dotfiles into the $HOME directory. | |
# | |
# Flags: | |
# | |
# -n Dry run | |
# -f Force – overwrite files in $HOME if they exist | |
# | |
# Inspired by https://github.com/mplacona/dotfiles/blob/65329dc/bootstrap.sh but quite different in the end. |
Quick research and comparison.
Notes from May 2019, slightly updated in July 2020:
- Relatively good experience, released regularly, seems to be getting reasonable attention from its authors
- There's no validation of the schema (apollographql/apollo-tooling#1287) and no Go to Definition within the schema (apollographql/apollo-tooling#1238)