sshでgithubと接続できたのにgit cloneをしたら
「-bash: git: コマンドが見つかりません」
と出てしまうのは何故でしょうか?
ローカルのMacの方には一応gitはインストールしてあります。
sentOS7
$ ssh -T github Enter passphrase for key '/home/user1/.ssh/id_git_rsa': Hi user-name! You've successfully authenticated, but GitHub does not provide shell access.
調べたら.bashrcの設定が〜〜と出てよく分かりませんでした。
.bashrcと.bash_profileの中身を置いておきます。
$ cat .bashrc # .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # Uncomment the following line if you don't like systemctl's auto-paging feature: # export SYSTEMD_PAGER= # User specific aliases and functions
$ cat .bash_profile # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/.local/bin:$HOME/bin export PATH
回答1件
あなたの回答
tips
プレビュー