Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 98527b9

Browse files
committed
Merge branch 'master' into next
* master: Git 1.7.3.3 CodingGuidelines: mention whitespace preferences for shell scripts Documentation: do not misinterpret pull refspec as bold text
2 parents 7c0b62c + 0b0cd0e commit 98527b9

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

Documentation/CodingGuidelines

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ But if you must have a list of rules, here they are.
3131

3232
For shell scripts specifically (not exhaustive):
3333

34+
- We use tabs for indentation.
35+
36+
- Case arms are indented at the same depth as case and esac lines.
37+
3438
- We prefer $( ... ) for command substitution; unlike ``, it
3539
properly nests. It should have been the way Bourne spelled
3640
it from day one, but unfortunately isn't.

Documentation/RelNotes/1.7.3.3.txt

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Git v1.7.3.3 Release Notes
22
==========================
33

4+
In addition to the usual fixes, this release also includes support for
5+
the new "add.ignoreErrors" name given to the existing "add.ignore-errors"
6+
configuration variable.
7+
8+
The next version, Git 1.7.4, and future versions, will support both
9+
old and incorrect name and the new corrected name, but without this
10+
backport, users who want to use the new name "add.ignoreErrors" in
11+
their repositories cannot use older versions of Git.
12+
413
Fixes since v1.7.3.2
514
--------------------
615

@@ -42,5 +51,4 @@ Fixes since v1.7.3.2
4251

4352
* "git-p4" (in contrib/) did not correctly handle deleted files.
4453

45-
46-
Other minor fixes and documentation updates may be included.
54+
Other minor fixes and documentation updates are also included.

Documentation/git-pull.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ With `--rebase`, it runs 'git rebase' instead of 'git merge'.
2727
passed to linkgit:git-fetch[1]. <refspec> can name an
2828
arbitrary remote ref (for example, the name of a tag) or even
2929
a collection of refs with corresponding remote-tracking branches
30-
(e.g., refs/heads/*:refs/remotes/origin/*), but usually it is
31-
the name of a branch in the remote repository.
30+
(e.g., refs/heads/{asterisk}:refs/remotes/origin/{asterisk}),
31+
but usually it is the name of a branch in the remote repository.
3232

3333
Default values for <repository> and <branch> are read from the
3434
"remote" and "merge" configuration for the current branch

0 commit comments

Comments
 (0)