Git Repository

Domino Marama's picture

Obtaining the latest source

The current development scripts are available from a git repository.

To setup a local copy go to the base directory where you want the scripts and run the following command:

git clone http://dominodesigns.info/git/primstar.git

If you have a clone of the old repository, just edit .git/config and change the url variable to http://dominodesigns.info/git/primstar.git

In future to get the latest scripts, go into the primstar directory and run the following command:

git pull

If you want your own branch to hack on just run:

git branch myNewBranchName

To switch to using your new branch run:

git checkout myNewBranchName

To revert to the official scripts run:

git checkout master

To merge updates from the main scripts to your scripts run:

git merge master

You may need to use rebase if you have edited scripts that have since been updated:

git rebase master myNewBranchName