https://github.com/luochen1990/sf-practice
mirror of Software Foundations, for convenience to practice
https://github.com/luochen1990/sf-practice
Last synced: over 1 year ago
JSON representation
mirror of Software Foundations, for convenience to practice
- Host: GitHub
- URL: https://github.com/luochen1990/sf-practice
- Owner: luochen1990
- License: other
- Created: 2018-03-30T07:21:10.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-15T08:23:32.000Z (about 8 years ago)
- Last Synced: 2025-01-20T20:49:52.179Z (over 1 year ago)
- Language: Coq
- Homepage: https://softwarefoundations.cis.upenn.edu
- Size: 3.91 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Software Foundations Copy
=========================
- This is simply a copy of the book [Software Foundations](https://softwarefoundations.cis.upenn.edu/).
- This repo is just for convenience, tell me to remove this repo if anyone is offended.
- As the author asked: **please do not post solutions to the exercises in a public place**.
- If this repo is outdated, everyone is welcome opening a PR to update it.
Tips
----
You can use the following command to prevent `git push` by mistake:
```
git remote set-url --push origin nope
```
If the mistake already happened, you can repair it via the following steps:
```
git branch backup
git reset origin/master --hard
git push --force
git checkout backup
```