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
| # Step 1: Go to .git/hooks/ directory | |
| # Step 2: Rename "commit-msg.sample" to "commit-msg" (CLI: mv commit-msg.sample commit-msg) | |
| # Step 3: Replace the existing code in a "commit-msg" file with the following code | |
| NAME=$(git branch | grep '*' | sed 's/* //') | |
| TIMESTAMP=$(date +"%D %T") | |
| DESCRIPTION=$(git config branch."$NAME".description) | |
| echo "$TIMESTAMP — $NAME"': '$(cat "$1") > "$1" | |
| if [ -n "$DESCRIPTION" ] | |
| then | |
| echo "" >> "$1" |
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
| [command] | |
| git ls-files -ci --exclude-standard | |
| git ls-files -ci --exclude-standard -z | xargs -0 git rm --cached | |
| [summary] | |
| After editing .gitignore to match the ignored files, you can do | |
| git ls-files -ci --exclude-standard | |
| to see the files that are included in the exclude lists | |
| You can then do | |
| git ls-files -ci --exclude-standard -z | xargs -0 git rm --cached |
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
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // choose either `'stable'` for receiving highly polished, | |
| // or `'canary'` for less polished but more frequent updates | |
| updateChannel: 'stable', |
We should have at least three files: 'Widget.svelte', 'rollup.config.js' and 'package.json':
- Our widget
Widget.svelte:
<script>
export let name;
</script>
<h1>Hello {name}!</h1>