git コマンドメモ
1. リポジトリの状態を確認
git status
2. コミット履歴を閲覧
git log –n 10
※-n
オプションで履歴の表示数を指定
3. コミット名変更
git commit --amend -m [修正コミット名]
3. 直前のコミット操作を取り消す
git reset –soft HEAD^
4. 指定のコミットに戻す
git reset --hard [コミットの記号]
※7文字の記号みたいなやつ
5. 他のブランチで行った変更を取り込む
git merge [branch名]
6. リモートブランチの変更を取り込む
git pull
7. プルリクの取り消し
git push --delete origin [branch名]
Author And Source
この問題について(git コマンドメモ), 我々は、より多くの情報をここで見つけました https://qiita.com/miwashutaro0611/items/bfc7848fcc59f872995f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .