V
V
Verg1l2015-01-28 17:19:44
git
Verg1l, 2015-01-28 17:19:44

How to get a digital signature (GPG) in git?

How ?
How to view it, get it?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
J
jcmvbkbc, 2015-01-28
@Verg1l

You can sign a tag with the command git tag -s <tag>. In order for this command to work, you need to have a key pair for an electronic signature in gpg.
You can check the signature of a tag with the command git tag -v <tag>. In order for this command to work, you need to import the public key of the person who signed the tag into gpg.
You can look at the tag with the signature git show <tag>.

A
A person from Kazakhstan, 2017-08-20
@dmitryvasyukov

https://codepen.io/simkaUser/pen/brvVaq?editors=1100 this is just an example, I tried to completely make an analogy .... maybe SVG won't work in some browsers because I didn't specify the titles of the SVG document itself
. SVGs are made like farting into a puddle on your knee, open Inkscape and just draw, then save as a separate file and connect as background-image: url (your svg); or as an inline document, as in my case ...
I drew on a regular sheet of paper and as you can see on the codepen that I just shifted one layer g
In order to make the example adaptive, you need to specify the viewbox for svg

I
Ivan Bogachev, 2017-08-20
@sfi0zy

How to make it up?

Something like this (a variant without SVG, built on CSS transforms).
A couple of remarks about the solution:
- Pictures in the form of normal pictures, not backgrounds, are needed in order to make it easier to adapt to the retina, load them with an independent lazy-load and for better indexing by search engines (I can neither confirm nor deny, but according to personal observations, background pictures sometimes tend not to be indexed at all, depending on the phase of the moon).
- In connection with the first point, I added a polyfill for the object-fit property (only needed for IE, other browsers have long been able to use it).
- Everything is rubber, but on small screens it is better to drop one section under another (this is not shown on your picture, but the logic tells).
На большом экране:
На маленьком:
f0d7cc300cb344a7883526d7f28606b0.png

C
cssfish, 2017-08-20
@cssfish

like this:
-left is static, width is ~ 75% of the total
- right is on top of it, (indent on the left is exactly measured to the bottom point, you can in%), then skew and transform-origin: 0 100%
- image / background inside the right reverse skew with transform-origin lower
- well, overflow by itself on the container
is all.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question