2019.10.21git
從github新建項目,到本地下拉,推送等操做github
git 相關命令服務器
---------------git命令----------------------- git add 文件; 將文件添加到倉庫 git commit -m 文件s; 提交文件,若是該文件沒有add,默認提交全部修改的文件(不肯定) git commit -m '註釋'; 後面不跟文件名,默認提交add的全部文件 git diff '文件'; 查看文件以前和已經提交文件的不一樣處 git diff HEAD -- 文件; 查看工做區和版本庫裏面最新版本的區別 git log --pretty=oneline;查看日誌文件 git reset --hard HEAD^; 版本回退 git reflog 記錄操做的每一次數據 git checkout -- 文件; 撤銷暫存區中新增內容,最近一次add或是commit以前的內容 git rm 文件; 刪除文件--須要commit git pull; 從遠程倉庫拉到本地 git push; 從本地更新到服務器 git log; 查看提交記錄 git config user.name //查看用戶名 git config user.email //查看用戶郵箱 git config --global user.name "" //修改本地帳戶 git config --global user.email "@qq.com" git 帳號:hanguangxue_x@163.com 密碼:15543323050han https://blog.csdn.net/qq_40815337/article/details/83379005 git config --system --unset credential.helper git remote add origin https://github.com/han-guang-xue/WX-Dialog.git