TKLtemplate is an open source application licensed under the GPL.
This template is meant to be used when starting a new TurnKey GNU/Linux appliance. Do not use when forking an existing appliance, instead follow the Guidelines.
- Log into GitHub, and browse to your home directory.
- Click on the
Repositories
tab; then click theNew
button. - Enter a repository name appropriate for the new appliance.
Note: GitHub will offer to create a README.rst file. Leave the option unchecked.
To be able to work on the project you'll need to clone it.
On your TKLdev workstation, enter:
cd projects git clone git@github.com:USERNAME/PROJECTNAME.git cd PROJECTNAME
Tip: GitHub will provide a convenient link with the correct USERNAME and PROJECTNAME that you can copy and paste.
To copy the TKLtemplate, we'll add it as an upstream source.
git remote add upstream https://github.com/Dude4Linux/TKLtemplate.git git fetch upstream git merge upstream/master git branch --unset-upstream git remote remove upstream
git rm README.rst git mv README.app README.rst
Edit the files, replacing all references to #MyApp#, #Author#, #email# and #date# with the appropriate values.
git add . git commit -m "initial commit" git push -u origin master