Created
June 15, 2021 18:09
-
-
Save pchiusano/3b2883d9aca45f6ca1274cec1c602568 to your computer and use it in GitHub Desktop.
My .unisonConfig, just in ~/.unisonConfig
This file contains 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 version my full namespace tree here, it's a snapshot | |
# of all my current workstreams. If I need to switch | |
# computers, I might just push here, then pull on the | |
# other computer. | |
# `.> push` will go here. | |
GitUrl = "[email protected]:pchiusano/unisoncode" | |
# GitUrl { | |
# | |
# # Some projects I occasionally make PRs against. | |
# # Example: from UCM, `._base> pull` will get latest trunk | |
# | |
# _base = "[email protected]:unisonweb/base:.trunk" | |
# _distributed = "[email protected]:unisonweb/distributed:.trunk" | |
# | |
# # I help maintain these projects, so I track the full tree. | |
# # This makes it easy to create, review and merge pull requests. | |
# # Example: from UCM, `._json> pull` will get latest full dev tree | |
# | |
# _json = "[email protected]:myuser/json.git" # '.git' is optional! | |
# _httpclient = "[email protected]:myorg/unison-httpclient" | |
# _project1 = "[email protected]:myorg/coolproject" | |
# | |
# # This is just a "pastebin" project I sometimes use for | |
# # quickly sharing code. I don't keep it organized at all! | |
# # Example: from UCM, `.scratch> push` will push here | |
# | |
# scratch = "[email protected]:myuser/unison-gists" | |
# | |
# # Another example with a nested namespace | |
# | |
# ns3.example.foo = "[email protected]:someorganization/thing" | |
# } | |
# Attach myself as author and use BSD license. | |
DefaultMetadata = [ ".metadata.authors.pchiusano" | |
, ".metadata.licenses.unisoncomputing2021" ] | |
# If I needed to pick a different license for a sub-namespace | |
# I'd remove license from the root and add a license here instead | |
# DefaultMetadata { | |
# _project1 = ["._project1._trunk.metadata.licenses.myself_bsd3_2020"] | |
# org.example.foo = ["._project1._trunk.metadata.licenses.myself_apache2_2020"] | |
# } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment