Misc tips
Этот контент пока не доступен на русском.
The tips below are not very specific for this repo. They’re just for quick notes for developing.
- To git-ignore a file/dir, it should be included in
.gitignoreand alsogit rm <file/dir>ifgit add(git-tracked) before. - Use
LANG=Cbefore a command to make sure the locale is right to parse the output withgrepawkandsed, etc. (#265)