Manages git repositories in Stata. It installs, updates, lists and removes git repositories containing Stata user-written programs. An alternative to sharing through ssc or net
git must be installed and accessible from your command line.
- Clone this repo
- Copy the
.adoand.sthlpfile to your personal ado directory under thegdirectory (create it if it does not exist).
In Stata, type:
ssc install git
After this you can keep git itself updated using git by typing git update git
Install a program from repository (url or filepath)
git install https://github.com/coderigo/stata-switchUninstall program previously installed with git
git uninstall switchUpdate program previously installed with git
git update switchList all repositories managed by git
git listA few handy tips to make it work best git:
-
Use the snake-case format for your repository name and prefix it with "stata". For example, if your program is called helloWorld, your repository should be called stata-hello-world.
-
Use the camelCase format for your program name and any installable other auxiliary files including the .sthlp file.
-
Place all the files you want to be copied over in the root of your repository.
-
It works nicely (and it's easier for community collaboration) if you host your repository on a public repo like github.
Happy to take requests.
Please add to the tests.do some sort of test, or run to make sure nothing's broken.
-
Have only tested this out on OSX, but feel it should work the same with *nix OSs. In theory should work on Windows, but have not tested it.
-
It requires repositories and program names to follow the
snake-caseandcamelCaseformat respectively (there is no obvious way to read file data into a variable with Stata. Happy to be corrected)