nice in Git! The magic is: "git checkout -b hack-a-bit-more" -- but
leave that for another time.
-Let's do something. Edit version.lisp-expr, and maybe give SBCL some
-love.
+Let's do something. Edit BUGS, and maybe give SBCL some love.
git diff # shows you the changes in your tree
git status # shows you the state of files in the tree
Git has a notion of a separate "staging area", from which commits are
made. You can add content to the it by using git-add:
- git add version.lisp-expr
+ git add BUGS
git status
git diff
By default git-diff shows the differences between the working tree and
the staging area (which starts out identical to HEAD after a checkout).
-Edit version.lisp-expr again. Now you have three versions of it
-(ignoring all the historical versions for a second) to compare:
+Edit BUGS again. Now you have three versions of it (ignoring all the
+historical versions for a second) to compare:
git diff # between tree and staging area
git diff HEAD # between tree and last commit
We like our latest version, so do
- git add version.lisp-expr
+ git add BUGS
again. Now the latest version is in the staging area, and version that
used to be there is gone. You don't need to worry about the staging
nice when diffing across the great whitespacification patches.
Onwards: just so that we have a bit more history on the branch, edit
-version.lisp-expr again, and git-commit again. You can use
+BUGS again, and git-commit again. You can use
git commit -a
0002-and-so-and-so-forth.patch
...
+Due to, among other things, the cvs->git synchronization lag it is
+easy to get conflicts on version.lisp-expr so you may want to delay
+finalizing version.lisp-expr and the .msg file that cvsexportcommit
+produced by bumping the version and adding it to the commit message.
+
To get latest changes from the CVS Git mirror you originally cloned
from, do