This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl.exe smime -verify -noverify -in IT01004999999_0FKD3.xml.p7m -inform DER -out IT01004999999_0FKD3.xml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For remove remote push/commit you can simply use this command | |
git push -f origin <last_known_good_commit>:<branch_name> | |
for example if you need to remove last commit in origin\master | |
git push -f origin f07c605:master | |
where f07c605 is the commit id of your last good commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I have created a tag "master", so I have this error during push | |
"dst refspec master matches more than one" | |
to remove wrong remote tag name I have used | |
git push origin <tag name> | |
for example |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query GetUsers { | |
search(query: "location:italy", first: 100, type: USER) { | |
userCount | |
pageInfo { | |
endCursor | |
hasNextPage | |
} | |
edges { | |
node { | |
... on User { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::SET PATH=%PATH%;C:\Windows\Microsoft.NET\Framework\v2.0.50727\ | |
SET PATH=%PATH%;C:\Windows\Microsoft.NET\Framework\v4.0.30319\ | |
::SET PATH=%PATH%;C:\Windows\Microsoft.NET\Framework\v3.5 | |
csc test.cs |