git git pull –rebase オプションとは --rebase オプションをつけてプルしたほうがマージコミットが作られない&履歴が綺麗になる 参考 ということでした。かわいらしい猫ちゃんの図でとてもわかり易い。 ちなみにgit rebaseとは git rebaseの使いみちだが... 2021.12.02 git
git git add 取り消し 基本は、 git reset HEAD 上記を使うのが多そう。上記を使うのは、 git init 直後でなく、2回目以降のgit addを取り消す ファイルすべて取り消す 場合。(両方。AND。) git reset HEA... 2021.10.06 git
git git clone しようとしたら remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. 事象 remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token inste... 2021.10.05 git
git git merge → git push やり方。サブブランチからメインのブランチ(master, main)などへマージ やりたいことブランチが以下のように、masterの他に「issue1」というのがあるとする$ git branch master* issue1issue1を、masterにマージしたい。やり方1. masterブランチにチェックアウトす... 2021.09.03 git
git git リモートリポジトリの、url 確認は、git remote -v $ git remote -v origin (fetch) origin (push) 参考qiita 2021.09.03 git
git git log したときにファイル名も表示させるには、 –stat オプション コメントやファイル名や、ファイル変更内容を表示させる git log --stat 今回は、これが知りたかった。 ファイル名と変更種別(新規、更新、削除、リネーム)だけ表示させる git log --name-status git... 2021.09.03 git
git git pull で、There is no tracking information for the current branch. のメッセージ。 事象 There is no tracking information for the current branch. Please specify which branch you want to merge with. See git... 2021.08.24 git
git git diff したときに表示される old mod new mode $ git diff diff --git a/common/js/jquery.csv.js/jquery.csv.js b/common/js/jquery.csv.js/jquery.csv.js old mode 100644 n... 2021.06.23 git