new-item -name 'foobar.txt' -itemtype file -path . -value 'foobarpop'
new-item -name 'foobar' -itemtype directory -path .
| @mixin mobile-only--height { | |
| @media (max-height: 635px) and (min-width: 642px) and (max-width: 1440px) { @content; } | |
| } |
| git rm $(git ls-file --deleted); |
| git checkout c5f567 -- file1/to/restore file2/to/restore |
| # to fetch (obtain references to) all origin branches | |
| git fetch origin | |
| # to see all branches | |
| git branch -a | |
| git branch -a | grep foo | |
| # puts string was not working, these are a few work arounds | |
| def puts(s) | |
| Rails.logger.info(s) | |
| end | |
| File.open("debug.txt", ""){|f|f.write('foo')} | |
| raise "foo" |
| git ls-files --others --exclude-standard |
| git diff --name-only |
| git diff -w # ignores whitespace differences | |
| # note that this will see no difference in "asc" and "a s c" | |
| git diff --ignore-space-at-eol # ignores all space at the end of line | |
| # this is most likely what you want. | |
| # these options also work with git show | |
| git show 2ert4d9 --ignore-all-space | |
| git show 2ert4d9 --ignore-space-change |
| git log @{u}.. 2> /dev/null | |
| # if git log fails, it will fail silently. | |
| # 2> means redirecting the output of stderr. | |
| # https://stackoverflow.com/questions/40714202/what-is-the-meaning-of-2-in-2-dev-null |