This repository provides a generic baseline for new Git repositories.
- Git SCM
- Visual Studio Code
- EditorConfig extension for VS Code
- Connectivity to reach the repository
Replace NewRepo with the desired name for the new repository and proceed as follows.
-
In any shell on Linux, macOS, and similar systems
git clone https://github.com/lagecorp/LTR NewRepo rm -rf NewRepo/.git cd NewRepo git initThe method above also works in Git Bash or Cygwin on Windows.
-
On Windows Command Prompt
git clone https://github.com/lagecorp/LTR NewRepo rd /s /q NewRepo\.git cd NewRepo git init
-
On Windows PowerShell
git clone https://github.com/lagecorp/LTR NewRepo Remove-Item -Recurse -Force NewRepo\.git Set-Location NewRepo git init
This repository is inspired by — but not limited to — Keep a Changelog, Semantic Versioning, and the LTR template. Any changes made or anticipated will be documented in the Roadmap and Changelog file.
Check other branches for ongoing or unreleased work.
Developed by Ezequiel Lage et al. Sponsored by Lagecorp and its subsidiaries. Published under the MIT License.
Included materials may have their own licenses, sponsors, and credits.
All feedback and contributions are welcome.