たまに --onto
を使おうと思うと忘れているのでメモ.
これを
%%{init: {
git clone https://[email protected]/who/proj.git | |
cd proj | |
# set remote mirror URL | |
git remote add --mirror=push mirror1 https://[email protected]/who/proj.git | |
git remote add --mirror=push mirror2 https://[email protected]/who/proj.git | |
# push to remote-mirrors | |
git push mirror1 | |
git push mirror2 | |
# push to direct-URL | |
git push --mirror https://[email protected]/who/proj.git |
Set objExcel = CreateObject("Excel.Application") | |
objExcel.Visible = True | |
For Each strFname In WScript.Arguments | |
Set objDoc = objExcel.Workbooks.Open(strFname) | |
' clear all names (comment out) | |
For Each N In objDoc.Names | |
'' N.Delete | |
Next | |
' clear all user style |
y - 処理中の hunk を索引に追加します。
n - 処理中の hunk を索引に追加しません。
q - 終了します。処理中の hunk およびそれ以降の hunk は索引に追加しません。
a - 処理中の hunk およびそれ以降のファイル中の hunk を索引に追加します。
d - 処理中の hunk およびそれ以降のファイル中の hunk を索引に追加しません。
g - 処理対象となる(別の) hunk を選択します。
/ - 入力した正規表現にマッチする hunk を検索します。
j - 処理中の hunk を保留にし、次の保留されている hunk を表示します。
J - 処理中の hunk を保留にし、次の hunk を表示します。