海诗网 知识百科 linux(linux学习)

linux(linux学习)

linux, Linux git命令是文本模式下的文件管理器。Git是一个管理文件的程序,和DOS下的Norton Commander很像,有交互操作界面。下面是Linux git命令的具体介绍:

1.git init初始化

2.git add main.c将main.c添加到临时存储区域。

3.git commit-m‘版本信息描述’将临时存储区中的文件提交给版本库。

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来查看工作区状态。

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删除一个文件并提交到临时存储区。

13、git分支视图分支

14.git branch创建分支

15.git检验开关分支

16.git checkout -b创建一个切换分支。

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,以上就是本文为您收集整理的linux最新内容,希望能帮到您!更多相关内容欢迎关注。

本文来自网络,不代表海诗网立场,转载请注明出处:https://m.hallse.com/n/164295.html
发表回复