linux, Linux git命令是文本模式下的文件管理器。Git是一個管理文件的程序,和DOS下的Norton Commander很像,有交互操作界面。下面是Linux git命令的具體介紹:
1.git init初始化
2.git add main.c將main.c添加到臨時存儲區(qū)域。
3.git commit-m‘版本信息描述’將臨時存儲區(qū)中的文件提交給版本庫。
4、git log查看日志信息。
5. git Configuration-Global User Name "Your Name"
6. git Configuration-Global User. Email "Your Email"
7.git重置-硬HEAD^,其中“HEAD”和HEAD~1以及序列號是等價的。
8.git reflog查看以前操作的信息。
9.git status來查看工作區(qū)狀態(tài)。
10. git check out- file name discarding modification
11. git resets the header file name to evacuate from the temporary storage area.
12.git rm filename刪除一個文件并提交到臨時存儲區(qū)。
13、git分支視圖分支
14.git branch創(chuàng)建分支
15.git檢驗開關分支
16.git checkout -b創(chuàng)建一個切換分支。
17、git branch -d 刪除分支
18、git merge 合并某分支到當前分支
19、git log pretty=oneline 歷史記錄顯示一行
20、git log --graph --pretty=oneline
21、git stash list 列出保存的工作現場
22、git stash pop 恢復工作現場
23、git merge --no-ff -m ‘描述符禁用快速合并’
24、生成通信密鑰方法:ssh-keygen -t rsa -C “youxiang@126.com”
25、-t 指定密鑰類型,默認是rsa ,可以省略。
26、-C 設置注釋文字,比如郵箱。
27、測試ssh -T git@github.com
28、git clone xiangmudizhi 克隆項目
29、git push origin 分支名提交分支到github
30、git push -u origin 分支名提交分支到github ,并跟蹤改分支
31、git branch --set-upstream-to=origin/遠程分支名本地分支名
功能為:設置本地分支跟蹤服務器分支(待驗證)
32、git pull origin fenzhiming 拉取遠程服務器上的分支更新到本地
linux,以上就是本文為您收集整理的linux最新內容,希望能幫到您!更多相關內容歡迎關注。