linux
git initgit
git add . github
git commit -m '這裏是日誌記錄'shell
git log 查看ssh
git remote add origin 連接ide
git pushfetch
問題:spa
fatal: 當前分支 master 沒有對應的上游分支。
爲推送當前分支並創建與遠程上游的跟蹤,使用
git push --set-upstream origin master
git push --set -upstream origin master日誌
問題:ip
To github.com:Testsoso/swiperGGG.git
! [rejected] master -> master (fetch first)
error: 沒法推送一些引用到 'git@github.com:Testsoso/swiperGGG.git'
提示:更新被拒絕,由於遠程倉庫包含您本地尚不存在的提交。這一般是由於另外
提示:一個倉庫已向該引用進行了推送。再次推送前,您可能須要先整合遠程變動
提示:(如 'git pull ...')。
提示:詳見 'git push --help' 中的 'Note about fast-forwards' 小節。
cat ~/.ssh/id_rsa
ssh-keygen -t rsa -C "你的郵箱"
複製到github製做ssh 嘗試鏈接:
ssh git@github.com
出現:
PTY allocation request failed on channel 0
Hi Testsoso! You've successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.
git fetch origin
git merge origin/master
問題:
fatal: 拒絕合併沒有關的歷史
git branch --set-upstream-to=origin/master master
git pull --allow-unrelated-histories
git push