y - 処理中の hunk を索引に追加します。
n - 処理中の hunk を索引に追加しません。
q - 終了します。処理中の hunk およびそれ以降の hunk は索引に追加しません。
a - 処理中の hunk およびそれ以降のファイル中の hunk を索引に追加します。
d - 処理中の hunk およびそれ以降のファイル中の hunk を索引に追加しません。
g - 処理対象となる(別の) hunk を選択します。
/ - 入力した正規表現にマッチする hunk を検索します。
j - 処理中の hunk を保留にし、次の保留されている hunk を表示します。
J - 処理中の hunk を保留にし、次の hunk を表示します。
This file contains 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
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 |
- 書いた人:YSR(@YSRKEN)
- 最終更新日:2017/03/22
- 参考資料:
- 改修工廠 - 艦隊これくしょん -艦これ- 攻略 Wiki
This file contains 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
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 |