我在一家运行Github私有实例的公司工作,我们在一个组织中有数百个存储库。
我想获取最近X天被修改过的文件的列表,无论它在哪个回购中被修改。
我该怎么做?
答案 0 :(得分:1)
我从来没有找到一种完全可以做到这一点的方法,并且强烈怀疑它永远不会与第三方网站一起使用。
但是我确实意识到您可以缩放iframe的内容以适合iframe,这对我有用
这似乎是最好的stackoverflow
How can I scale the content of an iframe?
这是一个可在Chrome和Safari(现代)中运行的示例,但不确定Firefox或更旧的浏览器。它显示了嵌入iframe中的网站,并对其进行了缩放以适合iframe的大小。
.wrap { width: 320px; height: 196px; padding: 0; overflow: hidden; float: left;}
.frame { width: 1280px; height: 786px; border: 1px solid black}
.frame {
// zoom: 0.25;
-moz-transform: scale(0.25);
-moz-transform-origin: 0 0;
-o-transform: scale(0.25);
-o-transform-origin: 0 0;
-webkit-transform: scale(0.25);
-webkit-transform-origin: 0 0;
}
<p>before the iframe</p>
<div class="wrap">
<div class="wrap">
<iframe class="frame" src="https://time.is">
</iframe>
</div>