Skip to content

Instantly share code, notes, and snippets.

@pchiusano
Created June 15, 2021 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pchiusano/3b2883d9aca45f6ca1274cec1c602568 to your computer and use it in GitHub Desktop.
Save pchiusano/3b2883d9aca45f6ca1274cec1c602568 to your computer and use it in GitHub Desktop.
My .unisonConfig, just in ~/.unisonConfig
# 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 = "git@github.com:pchiusano/unisoncode"
# GitUrl {
#
# # Some projects I occasionally make PRs against.
# # Example: from UCM, `._base> pull` will get latest trunk
#
# _base = "git@github.com:unisonweb/base:.trunk"
# _distributed = "git@github.com: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 = "git@github.com:myuser/json.git" # '.git' is optional!
# _httpclient = "git@github.com:myorg/unison-httpclient"
# _project1 = "git@github.com: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 = "git@github.com:myuser/unison-gists"
#
# # Another example with a nested namespace
#
# ns3.example.foo = "git@github.com: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