Git
Reset file to remote
This allows you to discard all local changes for a file and instead just use the remote.
git checkout origin/master -- path/to/file
Clone repo with all history
If a force push happens and the Git history is lost, the following command can be used to create an unshallow
clone. This will then allow SHAs from, for example, a GitHub pull request, that no longer exist in the tree to be checked out.
git fetch --unshallow
You may also be able to use
git fetch --shallow-since=15/11/2012
Notes mentioning this note
Code Review Checklist
Code Review Checklist
This started from Michaela Greiler’s checklist, and will evolve over time.
Linkerd
Istio is focused on features, even at the expense of complexity. Linkerd is focused on simplicity, even at the expense...
Prow
Prow is a [[continuous integration]] and [[continuous development]] platform created by the [[Kubernetes]] community and also used by [[Istio]].
SPIFFE
SPIFFE SPIFFE is the Secure Production Identity Framework For Everyone. It provides a standard for secure identities using custom [[X.509...
Supply Chain
Part of the mindset of bringing in thirdparty code is the idea that it has already been tested for quality...