開発

Github Personal Access Tokenの設定 + SourceTree

GitHubでPersonal Access Tokenを発行します
https://docs.github.com/ja/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens

SourceTree設定

 

アカウント設定からユーザ名、Personal Access Tokenを設定してください。

Terminal

$ vi ~/.gitconfig


[core]
        excludesfile = /Users/{ユーザ名}/.gitignore_global
[difftool "sourcetree"]
        cmd = opendiff \"$LOCAL\" \"$REMOTE\"
        path =
[mergetool "sourcetree"]
        cmd = /Applications/Sourcetree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
        trustExitCode = true
[user]
        name = {ユーザ名}
        email = yuu@example.com
[filter "lfs"]
        process = git-lfs filter-process
        required = true
        clean = git-lfs clean -- %f
        smudge = git-lfs smudge -- %f
[commit]
        template = /Users/{ユーザ名}/.stCommitMsg
[credential]
        helper = manager

[url "https://ghp_CH4 (略) jid:x-oauth-basic@github.com/"]
        insteadOf = https://github.com/

MacのTerminalに設定します。ユーザ名と(略)としているPersonal Access Tokenは各自の値を入力します。 これでSource TreeからGitHubのリポジトリをFetchしたり、Pushできるようになります。

 

Amazonおすすめ

iPad 9世代 2021年最新作

iPad 9世代出たから買い替え。安いぞ!🐱 初めてならiPad。Kindleを外で見るならiPad mini。ほとんどの人には通常のiPadをおすすめします><

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)