04 2016 档案
摘要:# check pointed auther commit git log --author="Author Name" # check pointed period commit git log --since="2012-2-23" --before="2012-2-24" # search in commit messages git log --grep="key word" # ...
阅读全文
摘要:openwrt14.07 howto generate /etc/config/network Table of Contents 1. firstboot test in board 1.1. firstboot operation 1.2. reboot operation 2. analysi
阅读全文
摘要:how to restore 'git reset –hard' operations Table of Contents 1. emulate git reset –hard 1.1. generate two commits 1.2. check the commits 1.3. reset –
阅读全文
摘要:#!/bin/sh expect <<-EOF spawn firstboot expect "*N/y*" send "y\r" interact expect eof EOF
阅读全文