aaaiiuie

学習(備忘録)のため運用

git

参考記事:Mac ターミナルにブランチ名を表示する

git

下記の記事が参考になったので保存 ■【Mac/Linux】zshとは?インストール方法を超丁寧に解説 https://suwaru.tokyo/%e3%80%90mac-linux%e3%80%91zsh%e3%81%a8%e3%81%af%ef%bc%9f%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e6%96%b9%e6%b3%95%e…

git addしたらCRLF will be replaced by LF xxxxx エラー

git

現在の環境がWindows10だからか、今まで気にならなかったのだが、git addで以下のエラーがでた。 $ git add . warning: CRLF will be replaced by LF in pate1.md. The file will have its original line endings in your working directory Gitが改行コード…

git で warning: unable to access '/.config/git/attributes': Permission deniedのエラー

git

addしようとしたらエラーがでた。 warning: unable to access '/Users/{user_name}/.config/git/ignore': Permission denied warning: unable to access '/Users/{user_name}/.config/git/attributes': Permission denied パーミッションの話だとは分かるの…

自動デプロイ(簡易) heteml → backlog

今回月額費用が安い(定額)hetemlで、backlogリポジトリを利用した自動デプロイ(簡易)について記載。 全体図 以下の図に示した内容になります。 image ローカルで変更した内容をpushし、backlogのgitにてmasterにプルリク → mergeを実施しタイミングでbac…

gitconfig alias

git

設定ファイル 設定ファイルを編集する形でエイリアスを設定します。 編集する設定ファイルによって、エイリアスが反映される範囲が異なります。 反映させたい範囲 編集する設定ファイル システム全体 /etc/gitconfig ユーザー ~/.gitconfig リポジトリ リポ…

backlogリポジトリとgithubリポジトリを両方使うときのconfig設定

git

backlogリポジトリとgithubリポジトリを両方使う場合のcofigの設定を備忘録として以下に記載。 | 鍵作成 ## 組織 $ ssh-keygen -t rsa -C '●●●●●●@example.com' -f ~/.ssh/id_rsa_backlog_company ## 個人 $ ssh-keygen -t rsa -C '●●●●●●@private.com' -f ~…

git tag

git

ローカルにタグ付け git tag v_1.0.0 リモートにタグを反映させる git push origin v_1.0.0 番外編: ローカルでつけたタグを全てリモートに反映させる git push origin --tags リモートにあるタグを全てローカルに引っ張る git pull origin --tags 番外編2: …

空コミット

git

これ git commit --allow-empty -m "first commit"

git fetch

git

git fetch gitの場合、リポジトリはリモートとローカルで2つある、 git fetchとはリモートリポジトリで更新された最新情報をローカルリポジトリに持ってくるコマンドのこと。 しかしpullのようにファイルが更新されるわけではなく、orgin/masterが更新される…

git pull origin masterとは

git

git pull origin masterとは fetchした後にgit checkout masterでmasterをチェックアウトしgit merge origin/masterでローカルを更新する。

macOS High SierraからMojaveにアップデート後、gitコマンドでerror

macOS High SierraからMojaveにアップデート後、gitコマンドでerror xcrun: error: invalid active developer path 以下のコマンドを実行し、xcodeをインストールすれば解決。 $ xcode-select --install 前日、掃除中xcode削除したこと思い出した。 毎回忘れ…