エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
ここにツイート内容が記載されます https://b.hatena.ne.jp/URLはspanで囲んでください
Twitterで共有ONにすると、次回以降このダイアログを飛ばしてTwitterに遷移します
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
# aというファイルを追加し、一旦コミットする $ git commit -m "add a file" # その後、aに修正を入れ... # aというファイルを追加し、一旦コミットする $ git commit -m "add a file" # その後、aに修正を入れる $ git status Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: a # <- aが修正されている $ git add . # 変更をインデックスに登録 $ git commit --amend --no-edit # 登録されたインデックスを直前のコミットにまとめる $ git status On branch master nothing to co