mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-05 06:04:34 +00:00
Release GNU make 4.3.90
* NEWS: Update for the prerelease. * bootstrap.conf: Choose the latest stable gnulib. * README.git: Updates.
This commit is contained in:
parent
134480787e
commit
990d6f9b9a
3 changed files with 13 additions and 10 deletions
4
NEWS
4
NEWS
|
@ -1,6 +1,6 @@
|
||||||
GNU make NEWS -*-indented-text-*-
|
GNU make NEWS -*-indented-text-*-
|
||||||
History of user-visible changes.
|
History of user-visible changes.
|
||||||
20 January 2020
|
20 September 2022
|
||||||
|
|
||||||
See the end of this file for copyrights and conditions.
|
See the end of this file for copyrights and conditions.
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ which is contained in this distribution as the file doc/make.texi.
|
||||||
See the README file and the GNU make manual for instructions for
|
See the README file and the GNU make manual for instructions for
|
||||||
reporting bugs.
|
reporting bugs.
|
||||||
|
|
||||||
Version 4.3.90 (20 Jan 2020)
|
Version 4.3.90 (20 Sep 2022)
|
||||||
|
|
||||||
A complete list of bugs fixed in this version is available here:
|
A complete list of bugs fixed in this version is available here:
|
||||||
|
|
||||||
|
|
17
README.git
17
README.git
|
@ -46,7 +46,10 @@ added before it so be sure your comment lines are not longer than 72
|
||||||
characters; prefer 70 or less. Please use standard ChangeLog formats for
|
characters; prefer 70 or less. Please use standard ChangeLog formats for
|
||||||
your commit messages (sans the leading TAB of course).
|
your commit messages (sans the leading TAB of course).
|
||||||
|
|
||||||
Rule #1: Don't rewrite pushed history (don't use "git push --force").
|
Rule #1: Don't rewrite pushed history on master (no "git push --force").
|
||||||
|
Rule #2: Feel free to rewrite pushed history on personal branches.
|
||||||
|
Rule #3: Prefer to squash-merge or rebase + merge --ff-only, rather than
|
||||||
|
merging from personal branches into master.
|
||||||
|
|
||||||
Typical simple workflow might be:
|
Typical simple workflow might be:
|
||||||
|
|
||||||
|
@ -54,14 +57,14 @@ Typical simple workflow might be:
|
||||||
* Use "git status" and "git diff" to verify your changes
|
* Use "git status" and "git diff" to verify your changes
|
||||||
* Use "git add" to stage the changes you want to make
|
* 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 commit" to commit the staged changes to your local repository
|
||||||
* Use "git pull" to accept & merge new changes from the Savannah repository
|
* Use "git pull -r" to accept new changes from the upstream repository
|
||||||
* Use "git push" to push your commits back to the Savannah repository
|
* Use "git push" to push your commits back to the upstream repository
|
||||||
|
|
||||||
For Emacs users, there are many options for Git integration but I strongly
|
For Emacs users, there are many options for Git integration but I strongly
|
||||||
recommend the Magit package: https://www.emacswiki.org/emacs/Magit
|
recommend Magit: https://magit.vc/ It makes the workflow much clearer, and
|
||||||
It makes the workflow much clearer, and has advanced features such as
|
has advanced features such as constructing multiple commits from various files
|
||||||
constructing multiple commits from various files and even from different
|
and even from different diff chunks in the same file. There is a video
|
||||||
diff chunks in the same file. There is a video available which helps a lot.
|
available which helps a lot.
|
||||||
|
|
||||||
|
|
||||||
Coding Standards
|
Coding Standards
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
checkout_only_file=README.git
|
checkout_only_file=README.git
|
||||||
|
|
||||||
# Choose a specific version of gnulib, when checking out
|
# Choose a specific version of gnulib, when checking out
|
||||||
GNULIB_REVISION=891934d4b75038abc8e82f52d7a74d357af7e7cc
|
GNULIB_REVISION=stable-202207
|
||||||
|
|
||||||
# Always copy files rather than symlink
|
# Always copy files rather than symlink
|
||||||
copy=true
|
copy=true
|
||||||
|
|
Loading…
Reference in a new issue