龍恩博客http://www.cnblogs.com/tugenhua0707/p/4050072.html#!commentshtml
git命令大全 https://www.jqhtml.com/8235.htmlgit
本身經常使用git命令 github
- 0.ssh-keygen -t rsa –C 「youremail@example.com」登陸github,打開」 settings」中的SSH Keys頁面,而後點擊「Add SSH Key」,填上任意title,在Key文本框裏黏貼id_rsa.pub文件的內容。
- 1.git config --global user.name "your name"$ git config --global user.email"your_email@youremail.com"
-
2.git init
3.git add 文件
4.git commit -m "解釋"
5 git status 狀態
6.git log 查看歷史提交
7.git reset HEAD~ 回退上一個快照(~~)兩個~上上個快照
8.git rm -f file名字 (rm刪除文件 -f是刪除全局全部的同樣的文件)刪除了工做區和暫存區 可是記錄刪除不了(git git reset --soft HEAD~)soft是修改指針,記錄也就沒了
9.git rm --cached file名字 刪除暫存區,保留工做區
10.git mv 舊名字 新名字 ( 重命名)
11 git branch 名字 建立新的分支
12 git log --decorate (最近記錄)
13 git checkout 名字 (切換分支)或者 git checkout -b 名字建立並切換
14 git log --decorate --oneline --graph --all (最近記錄精簡版)
15 git merge 分支名 合併分支
16 git branch -d 分支名 刪除分支
git config --list
-
git clone '倉庫地址'
git push
git pull