git及github使用問題記錄(持續更新中...)

一、從github上pull了一個倉庫到本地,修改了若干內容,本地commit以後,再向github上push的時候,提示everything up-to-date。用 git branch 查看本地分支,發現有兩個分支:
    *(no branch)
        master
因而 git checkout master ,杯具來臨了,修改的內容不見了,git log查看不到上次commit的記錄。翻箱倒櫃的找度娘求助,(不是穀粉:D),問題得以解決:
    cat .git/logs/HEAD     //能夠看到提交的結果,一樣能夠用 git reflog 或 git log -g 命令查看到歷史提交記錄。
經過 git log -g 查看到全部提交記錄,找到你要恢復的 commitid,即第一行 commit後面的那一大串字符,使用如下命令恢復到recover_branch:
    git branch recover_branch commitid
再用git branch 便可看到本地有兩個branch了:
        master

    *  recover_branch
參考資料:
從Git倉庫中恢復已刪除的分支或丟失的commit
git常見問題和操做 php

二、在本地建立tag的方法是 git tag v1.0.0 ,可是這樣github上並不能顯示你的tag,因此須要輸入下列命令以同步tag:
    git push origin --tags git

相關文章
相關標籤/搜索