git

スポンサーリンク
git

git pull –rebase オプションとは

--rebase オプションをつけてプルしたほうがマージコミットが作られない&履歴が綺麗になる 参考 ということでした。かわいらしい猫ちゃんの図でとてもわかり易い。 ちなみにgit rebaseとは git rebaseの使いみちだが...
git

git head detached 戻す

対応 masterブランチしかない場合、masterブランチにする。 git checkout master
git

git add 取り消し

基本は、 git reset HEAD 上記を使うのが多そう。上記を使うのは、 git init 直後でなく、2回目以降のgit addを取り消す ファイルすべて取り消す 場合。(両方。AND。) git reset HEA...
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...
git

git merge → git push やり方。サブブランチからメインのブランチ(master, main)などへマージ

やりたいことブランチが以下のように、masterの他に「issue1」というのがあるとする$ git branch  master* issue1issue1を、masterにマージしたい。やり方1. masterブランチにチェックアウトす...
git

git リモートリポジトリの、url 確認は、git remote -v

$ git remote -v origin (fetch) origin (push) 参考qiita
git

git log したときにファイル名も表示させるには、 –stat オプション

コメントやファイル名や、ファイル変更内容を表示させる git log --stat 今回は、これが知りたかった。 ファイル名と変更種別(新規、更新、削除、リネーム)だけ表示させる git log --name-status 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...
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...
git

git リモートリポジトリ確認 コマンド

コマンド git remote -v
スポンサーリンク