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
git gitでワーキングツリーの作業内容をもとに戻すにはgit checkout . ワーキングツリー・・・gitで管理してる、ローカル内のファイル。テキストエディタで編集してる実ソースファイルのこと。 ワーキングツリーの作業内容をすべてもとに戻す git checkout . ワーキングツリーの作業内容をファイル指定でも... 2021.05.07 git
git git show で最新のcommitの変更内容詳細が確認できる コマンド 最新のコミットについて、変更内容の詳細を確認する git show 指定したコミットについて、変更内容の詳細を確認する git show コミットID 2021.04.27 git