Author: Kent

Working with git

The Basics Download a repository from github git clone <url> Push changes back to github git commit -a -m “Commit Message” git push This will only publish modified files. If you’ve added any new files you have to manually stage them...

Working with WIM files

Here are some of the dism commands I use most frequently. Mount a WIM file dism /mount-wim /wimfile:”D:\path\to\wim\file” /index:1 /mountdir:D:\mount Dismount a WIM file with commit dism /unmount-win /mountdir:D:\mount /commit Dismount a WIM file with discard dism /unmount-win /mountdir:D:\mount /discard Add...