Git– category –
-
[git] git rebase –onto便利
[git] git rebase --onto便利 バックエンドが実装したAPIをいち早く疎通確認したくて そのブランチ(feature/a)から派生ブランチ(feature/a-2)を作り、レビューを受けて、feature/a-2を先にmainにマージしたいのでfeature/a-2をmainでrebaseする git rebase... -
2023年度版【解決方法(画像付き)】急に。git pushしたら「Please make sure you have the correct access rights and the repository exists.」
2023年度版【解決方法(画像付き)】急に。git pushしたら「Please make sure you have the correct access rights and the repository exists.」 何回もこれに出会うし新たに設定が必要な時もあるので一回まとめた。 スクロールできます -
【Git Tips】「以前までcheckoutしていたブランチに戻る」Return to the previously checked out branch
【Git Tips】「以前までcheckoutしていたブランチに戻る」Return to the previously checked out branch いつも作業ブランチからmasterでpullして作業ブランチに戻って、git rebase masterしていた。 作業ブランチを覚えておく必要があった。 なんかないか... -
[急にどうしたGit commitしようとしたら] Please move it to husky.hooks in package.json, a .huskyrc file, or a husky.config.js file
[急にどうした] Please move it to husky.hooks in package.json, a .huskyrc file, or a husky.config.js file 1. そのgitを実行しているcurrentに.git/hooksがあるか確認 2. ない場合.gitがあるディレクトリまで移動 3. rm -rf .git/hooksを消す 4. pack... -
解決![commit時これが出てきたら] husky > pre-commit hook failed (add –no-verify to bypass)
解決![commit時これが出てきたら] husky > pre-commit hook failed (add --no-verify to bypass) package.jsonで "precommit": "lint-staged && flow check ", など設定しているとそのタスクでエラーがあった際に直せと言...
1