-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Git hash 関連の環境変数をマクロ名に一致させる #583
Git hash 関連の環境変数をマクロ名に一致させる #583
Conversation
@echo GIT_URL: %GIT_URL% | ||
@echo GIT_SHORT_COMMIT_HASH : %GIT_SHORT_COMMIT_HASH% | ||
@echo GIT_COMMIT_HASH : %GIT_COMMIT_HASH% | ||
@echo GIT_URL : %GIT_URL% |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
レビューコメントですが、このPRとは関係ない話です。
ここの出力はこうなるんです↓
---- Make githash.h ----
GIT_SHORT_COMMIT_HASH : 5010d007
GIT_COMMIT_HASH : 5010d007bfb6d7fb74dc3e62f2a6fe257ee90066
GIT_URL : https://github.com/sakura-editor/sakura.git
APPVEYOR_URL : https://ci.appveyor.com
APPVEYOR_REPO_NAME : sakura-editor/sakura
https://ci.appveyor.com/project/sakuraeditor/sakura/builds/19770675/job/2v09yiru7a1plb41
コロンの左側は長いものから短いものの順で並び、
コロンの右側は短いものから長いものの順で並んでいます。キレイです 💯
久しぶりにバッチのソースを見て、ここだけ並び順が違ってることに気付きました 👎
実際の処理手順はともかくとして、ドキュメントの記述順は合わせたいかなーと思いました。
ただ、それは今じゃなくてもいいと思ってます。
| COMMITID | git の commit Hash | git 環境が有効な場合 | | ||
| SHORT_COMMITID | git の commit Hash の先頭8文字 | git 環境が有効な場合 | | ||
| GIT_COMMIT_HASH | git の commit Hash | git 環境が有効な場合 | | ||
| GIT_SHORT_COMMIT_HASH | git の commit Hash の先頭8文字 | git 環境が有効な場合 | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ドキュメントの書き順の指摘箇所はこの辺です。
出力順は、「短いやつ→長いやつ」なので。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
マクロで定義したもの(後から考案)のがカッコいいから合わせようって意図と理解しました。
賛成です 😄
提案についてご意見お聞かせください。
6f1b6c2
to
c1f3433
Compare
単に違っているから合わせる、のが理由です。 |
d4779a9 で定義順を合わせました。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
対応ありがとうございます。
Looks good to meです。
…-hash-var Git hash 関連の環境変数をマクロ名に一致させる
#576: Git hash 関連の環境変数をマクロ名に一致させる
以下マクロに対応する環境変数名をマクロ名に合わせる