diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | README.git | 28 |
2 files changed, 32 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2013-01-19 Paul Smith <psmith@gnu.org> + + * README.git: Add a bit more documentation on Git workflow & rules. + 2013-01-13 Paul Smith <psmith@gnu.org> * main.c (main): Restore all make flags after re-exec is complete. @@ -28,6 +28,34 @@ make source code via Git from the FSF's Savannah project $ git clone git://git.savannah.gnu.org/make.git +Changes using Git +----------------- + +For non-developers, please continue to provide patches as before, or if you +make a public repository I can pull from that if you prefer. + +For developers, I'm still new to Git myself, so I don't have a ton of advice. +In this release we will continue to create ChangeLog files by hand so please +don't forget to update the ChangeLog. + +Rule #1: Don't rewrite pushed history (don't use "git push --force"). + +Typical simple workflow might be: + + * Edit files + * Use "git status" and "git diff" to verify your changes + * Use "git add" to stage the changes you want to make + * Use "git commit" to commit the staged changes to your local repository + * Use "git pull" to accept & merge new changes from the Savannah repository + * Use "git push" to push your commits back to the Savannah repository + +For Emacs users, there are many options for Git integration but I strongly +recommend the Magit package: http://www.emacswiki.org/emacs/Magit +It makes the workflow much clearer, and has advanced features such as +constructing multiple commits from various files and even from different +diff chunks in the same file. There is a video available which helps a lot. + + Building From Git ----------------- |