diff options
author | James Meyer <james.meyer@operamail.com> | 2010-03-18 21:04:47 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-03-18 21:04:47 (GMT) |
commit | 966809bc32cdcbfe4c3f0645af489fc1af2767df (patch) | |
tree | f4ac90bf81b782da3abb3e87bf0604b1cc8903c4 | |
parent | 64c0492537c975c198d4be00427c8dd4287e444e (diff) | |
parent | bcee26d88a2ed124e9a39e8f374f47263c4e274d (diff) | |
download | linhes_dev-966809bc32cdcbfe4c3f0645af489fc1af2767df.zip |
Merge branch 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-dev
-rw-r--r-- | README | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -192,10 +192,21 @@ mp -s <= builds the package and all dependencies # a new iso or installing the package). # In order to make your source change(s) available to others, you will have -# to commit your change(s) to your local copy of the LinHES-PKGBUILD repo -# (git commit -a -m "commit message") and then push the change(s) to the -# public repo (git push). -# +# to commit your change(s) to your local copy of the LinHES-PKGBUILD repo. +# If this is your first time using the git command, set up your user name +# and email address (You only need to do this once, not every time): + + git config --global user.name "Your Name" + git config --global user.email "you@yourdomain.com" + +# Next, commit your changes to your local LinHES-PKGBUILD repo: + + git commit -a -m "commit message" + +# and then push the change(s) to the public repo: + + git push + # In order to make your new package(s) available to others, you will need to # upload changed packages using kmsync.sh: |