自己學習時記的筆記,用SSH方式推送到 github時,本地的常用操作是:
git add .
git commit -m"XXX"
git push origin
但是發現github上對應的首頁活動點圖並沒有顯示有任何活動
請問為什麼?
補充一下:
原來我是用https:方式clone下來的,這樣自動origin就是https方式了.為了方便,我修改成了ssh方式,是不是和這個有關係?操作如下:
1) RM 掉原来的 origin
2) ADD一个新的
3) 再关联一下分支
謝謝@Kavlez的 耐心回答,確實出錯在SSH上,因為SSH 很久以前生成的,忘記當時添加的帳戶是哪個了
這裡是官方回答
PS: 查看github的的commit 資訊,可以像官方回答的在commit連結後加.patch,這樣就可以查看到提交用戶的資訊
大家讲道理2017-04-28 09:08:12
可能是沒有設定remote
$git remote add origin https://github.com/user/repo.git
# Set a new remote
git remote -v
# Verify new remote
# origin https://github.com/user/repo.git (fetch)
# origin https://github.com/user/repo.git (push)
或說ssh相關的設定是否正確