GitHub使用技巧有哪些

本篇内容主要讲解“GitHub使用技巧有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“GitHub使用技巧有哪些”吧!

标题:少有人知的 GitHub 使用技巧

GitHub 大家常上吧?可是使用 GitHub 的各种小窍门你就不一定知道了。本文将各种使用 GitHub 的小窍门分享给大家。

diff时忽略空格

有些修改只是增减了空格,在URL中添加?w=1就可以忽略。

查看某个作者的提交历史

在URL中添加?author=username,例如:

https://github.com/rails/rails/commits/master?author=dhh
      

比较版本

使用类似如下的URL比较分支:

https://github.com/rails/rails/compare/master...4-1-stable
   

同样可以使用一下格式:

https://github.com/rails/rails/compare/master@{1.day.ago}...masterhttps://github.com/rails/rails/compare/master@{2014-10-04}...master
   

如果想和派生仓库比较,加上派生仓库名作前缀即可:

https://github.com/rails/rails/compare/byroot:master...master
   

通过 HTML 方式嵌入 Gist

Gists是 GitHub 推出的基于 Git 的代码片段服务。Gists页面提供JavaScript代码,可以将 Gist 嵌入到其他站点。但是很多站点粘贴 JavaScript 无效,这时候你可以在 Gist URL 后附加.pibb,得到一个纯 HTML 的版本,然后就可以复制粘贴 HTML 源码到其他网站了。例如 https://gist.github.com/tiimgreen/10545817.pibb

Git.io

Git.io 是适用于 GitHub 的短网址服务。

当然,为了方便,也可以使用Curl访问:

  1. $ curl -i http://git.io -F "url=https://github.com/..."

  2. HTTP/1.1201Created

  3. Location: http://git.io/abc123

  4. $ curl -i http://git.io/abc123

  5. HTTP/1.1302Found

  6. Location: https://github.com/...

   

你甚至可以指定短网址的字段:

$ curl -i http://git.io -F "url=https://github.com/techNoweenie" \-F "code=t"HTTP/1.1201CreatedLocation: http://git.io/t
   

高亮行

例如,在 URL 中加上 #L52 可以高亮第52行。或者你也可以直接点击行数。

多行高亮同样支持。你可以使用类似#L53-L60格式,或者在按住shift的同时点击。

https://github.com/rails/rails/blob/master/activemodel/lib/active_model.rb#L53-L60
   

快速引用

你可以选中别人的评论文字,然后按r,这些内容会以引用的形式被复制在文本框中:

任务列表

在工单或合并请求中,你可以使用任务列表语法:

-[]Be awesome-[]Do stuff-[]Sleep
     

勾选之后,会更新 Markdown:

-[x]Be awesome-[x]Do stuff-[]Sleep
   

合并请求的 diff 和 patch

可以在 URL 后添加 .diff 和 .patch,以对应的模式查看合并请求:

https://github.com/tiimgreen/github-cheat-sheet/pull/15https://github.com/tiimgreen/github-cheat-sheet/pull/15.diffhttps://github.com/tiimgreen/github-cheat-sheet/pull/15.patch
   

结果是纯文本的:

  1. diff --git a/README.md b/README.md

  2. index 88fcf69..8614873100644

  3. --- a/README.md)

  4. +++ b/README.md

  5. @@-28,6+28,7@@All the hidden andnot hidden features of GitandGitHub.This cheat sheet was i

  6. -[MergedBranches](#merged-branches)

  7. -[QuickLicensing](#quick-licensing)

  8. -[Todo Lists](#todo-lists)

  9. +-[RelativeLinks](#relative-links)

  10. -[.gitconfig Recommendations](#gitconfig-recommendations)

  11. -[Aliases](#aliases)

  12. -[Auto-correct](#auto-correct)

  13. @@-381,6+382,19@@When they are clicked, they will be updated in the pure Markdown:

  14. -[]Sleep

  15. (...)

    

到此,相信大家对“GitHub使用技巧有哪些”有了更深的了解,不妨来实际操作一番吧!这里是编程之家网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

相关文章

蚂蚁庄园小课堂2024年6月29日答案是什么?进入支付宝一起饲养...
谷歌小恐龙怎么调出来,我们将连接电脑的网络拔掉或者禁用网...
蚂蚁庄园小课堂2024年6月22日答案是什么?每天蚂蚁庄园小课堂...
火绒为什么不建议大家用,火绒对于用户的要求比较高,查杀病...
百度网盘电脑版订阅的分享在哪?百度网盘电脑版订阅的分享在什...
notepad怎么替换换行符,打开notepad++软件,点击菜单栏的视...