// jQuery
$(document).ready(function() {
// code
})- pwd - aktualny katalog
- ls -la - listuje wszystkie dostępne pliki
- ls -lat - listuje wszystkie dostępne pliki posortowane według czasu modyfikacji
- cp -r {nazwa pliku/katalogu} {miejsce docelowe} - kopiuje plik lub cały katalog z zawartością we wskazane miejsce
- mv {nazwa pliku/katalogu} {miejsce docelowe} - przenosi plik lub cały katalog z zawartością we wskazane miejsce (jeśli lokalizacja pliku docelowego jest taka sama jak pliku do przeniesienia, zmienia nazwę)
- du -sh - pokazuje zajętość całego katalogu
- du -sh * - pokazuje rozmiar poszczególnych plików i katalogów
- git init - inicjalizuje repozytorium GIT w katalogu
- git clone {adres repozytorium} - klonuje repozytorium do katalogu
- git status - pokazuje status repozytorium (pokazuje informację o zmodyfikowanych, nowych, usuniętych oraz nie należące do repozytorium plikach)
- git remote add {jakaś nazwa} {adres repozytorium} - dodaje repozytorium innego użytkownika (
git remote add upstream https://github.com/bluetree-service/idylla.git) - git remote -v lista wszystkich zewnetrznych repozytoriów
- git remote rm {nazwa dla remota} - usuwa zewnętrzne repozytorium
- git fetch {nazwa remota} - pobiera listę zmian z innego repozytorium (w tym pokazuje nowe gałęzie)
- git branch - lista gałęzi w repozytorium
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
| #!/bin/sh | |
| debug_rex='/console.log/' | |
| debug_print_rex=$debug_rex'p' | |
| debug_del_rex=$debug_rex' d' | |
| add_debug_patch='.add-debug.patch' | |
| del_debug_patch='.del-debug.patch' | |
| git_work_dir="$(git rev-parse --show-toplevel)" | |
| fake_file="$git_work_dir/.fake_file" | |
| cur_dir="$(pwd)" |
- Download Microsoft Edge VM from https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/
- Download Virtualbox and import the Edge VM image.
Then in the VM:
- Install guest addons in the VM
- Download & install latest NVDA from nvaccess.org
- Download & install SharpKeys and use it to map left an alternative key (eg. Left Ctrl) to the Insert key. This is needed because Macs do not typically have an “Insert” key which is the prefix for many NVDA commands.
This was useful for me when we created a new branch for a new major release, but were still working on our current version as well. I cloned our repo again and kept the new project on our new branch, but also wanted to get my stashes there.
git stash show -p > patch
You'll have to specify your stash and name your file whatevery you want. Do this for as all your stashes, and you'll have patch files in your pwd.