···6666 disables it is in effect), make sure the patch is
6767 applicable to what the current index file records. If
6868 the file to be patched in the working tree is not
6969- up-to-date, it is flagged as an error. This flag also
6969+ up to date, it is flagged as an error. This flag also
7070 causes the index file to be updated.
71717272--cached::
···259259If `--index` is specified (explicitly or implicitly), then the submodule
260260commits must match the index exactly for the patch to apply. If any
261261of the submodules are checked-out, then these check-outs are completely
262262-ignored, i.e., they are not required to be up-to-date or clean and they
262262+ignored, i.e., they are not required to be up to date or clean and they
263263are not updated.
264264265265If `--index` is not specified, then the submodule commits in the patch
+1-1
Documentation/git-cvsserver.txt
···223223That means that even if you offer only read access (e.g. by using
224224the pserver method), 'git-cvsserver' should have write access to
225225the database to work reliably (otherwise you need to make sure
226226-that the database is up-to-date any time 'git-cvsserver' is executed).
226226+that the database is up to date any time 'git-cvsserver' is executed).
227227228228By default it uses SQLite databases in the Git directory, named
229229`gitcvs.<module_name>.sqlite`. Note that the SQLite backend creates
+3-3
Documentation/git-diff-index.txt
···8585The non-cached version asks the question:
86868787 show me the differences between HEAD and the currently checked out
8888- tree - index contents _and_ files that aren't up-to-date
8888+ tree - index contents _and_ files that aren't up to date
89899090which is obviously a very useful question too, since that tells you what
9191you *could* commit. Again, the output matches the 'git diff-tree -r'
···100100 torvalds@ppc970:~/v2.6/linux> git diff-index --abbrev HEAD
101101 :100644 100664 7476bb... 000000... kernel/sched.c
102102103103-i.e., it shows that the tree has changed, and that `kernel/sched.c` has is
104104-not up-to-date and may contain new stuff. The all-zero sha1 means that to
103103+i.e., it shows that the tree has changed, and that `kernel/sched.c` is
104104+not up to date and may contain new stuff. The all-zero sha1 means that to
105105get the real diff, you need to look at the object in the working directory
106106directly rather than do an object-to-object diff.
107107
+1-1
Documentation/git-merge.txt
···141141would result from the merge already.)
142142143143If all named commits are already ancestors of `HEAD`, 'git merge'
144144-will exit early with the message "Already up-to-date."
144144+will exit early with the message "Already up to date."
145145146146FAST-FORWARD MERGE
147147------------------
+1-1
Documentation/git-rebase.txt
···334334335335-f::
336336--force-rebase::
337337- Force a rebase even if the current branch is up-to-date and
337337+ Force a rebase even if the current branch is up to date and
338338 the command without `--force` would return without doing anything.
339339+
340340You may find this (or --no-ff with an interactive rebase) helpful after
+1-1
Documentation/git-rerere.txt
···205205------------
206206207207you could run `git rebase master topic`, to bring yourself
208208-up-to-date before your topic is ready to be sent upstream.
208208+up to date before your topic is ready to be sent upstream.
209209This would result in falling back to a three-way merge, and it
210210would conflict the same way as the test merge you resolved earlier.
211211'git rerere' will be run by 'git rebase' to help you resolve this
+1-1
Documentation/git-rm.txt
···146146in the linkgit:gitmodules[5] file will also be removed and that file
147147will be staged (unless --cached or -n are used).
148148149149-A submodule is considered up-to-date when the HEAD is the same as
149149+A submodule is considered up to date when the HEAD is the same as
150150recorded in the index, no tracked files are modified and no untracked
151151files that aren't ignored are present in the submodules work tree.
152152Ignored files are deemed expendable and won't stop a submodule's work
+1-1
Documentation/git-svn.txt
···424424'set-tree'::
425425 You should consider using 'dcommit' instead of this command.
426426 Commit specified commit or tree objects to SVN. This relies on
427427- your imported fetch data being up-to-date. This makes
427427+ your imported fetch data being up to date. This makes
428428 absolutely no attempts to do patching when committing to SVN, it
429429 simply overwrites files with those specified in the tree or
430430 commit. All merging is assumed to have taken place
+1-1
Documentation/git-update-index.txt
···214214Using --refresh
215215---------------
216216`--refresh` does not calculate a new sha1 file or bring the index
217217-up-to-date for mode/content changes. But what it *does* do is to
217217+up to date for mode/content changes. But what it *does* do is to
218218"re-match" the stat information of a file with the index, so that you
219219can refresh the index for a file that hasn't been changed but where
220220the stat entry is out of date.
+4-4
Documentation/gitcore-tutorial.txt
···631631$ git update-index --refresh
632632----------------
633633+
634634-in the new repository to make sure that the index file is up-to-date.
634634+in the new repository to make sure that the index file is up to date.
635635636636Note that the second point is true even across machines. You can
637637duplicate a remote Git repository with *any* regular copy mechanism, be it
···701701----------------
702702703703where the `-u` flag means that you want the checkout to keep the index
704704-up-to-date (so that you don't have to refresh it afterward), and the
704704+up to date (so that you don't have to refresh it afterward), and the
705705`-a` flag means "check out all files" (if you have a stale copy or an
706706older version of a checked out tree you may also need to add the `-f`
707707flag first, to tell 'git checkout-index' to *force* overwriting of any old
···1283128312841284First, you need to create an empty repository on the remote
12851285machine that will house your public repository. This empty
12861286-repository will be populated and be kept up-to-date by pushing
12861286+repository will be populated and be kept up to date by pushing
12871287into it later. Obviously, this repository creation needs to be
12881288done only once.
12891289···14501450would contain a call to 'git update-server-info'
14511451but you need to manually enable the hook with
14521452`mv post-update.sample post-update`. This makes sure
14531453-'git update-server-info' keeps the necessary files up-to-date.
14531453+'git update-server-info' keeps the necessary files up to date.
14541454145514553. Push into the public repository from your primary
14561456 repository.
+1-1
Documentation/githooks.txt
···369369370370When enabled, the default 'post-update' hook runs
371371'git update-server-info' to keep the information used by dumb
372372-transports (e.g., HTTP) up-to-date. If you are publishing
372372+transports (e.g., HTTP) up to date. If you are publishing
373373a Git repository that is accessible via HTTP, you should
374374probably enable this hook.
375375
+1-1
Documentation/gitrepository-layout.txt
···7171 This file is to help dumb transports discover what packs
7272 are available in this object store. Whenever a pack is
7373 added or removed, `git update-server-info` should be run
7474- to keep this file up-to-date if the repository is
7474+ to keep this file up to date if the repository is
7575 published for dumb transports. 'git repack' does this
7676 by default.
7777
+1-1
Documentation/gittutorial.txt
···109109$ git status
110110On branch master
111111Changes to be committed:
112112-Your branch is up-to-date with 'origin/master'.
112112+Your branch is up to date with 'origin/master'.
113113 (use "git reset HEAD <file>..." to unstage)
114114115115 modified: file1
+1-1
Documentation/merge-options.txt
···39394040--ff-only::
4141 Refuse to merge and exit with a non-zero status unless the
4242- current `HEAD` is already up-to-date or the merge can be
4242+ current `HEAD` is already up to date or the merge can be
4343 resolved as a fast-forward.
44444545--log[=<n>]::
+1-1
Documentation/technical/pack-protocol.txt
···199199terminate the connection by sending a flush-pkt, telling the server it can
200200now gracefully terminate, and disconnect, when it does not need any pack
201201data. This can happen with the ls-remote command, and also can happen when
202202-the client already is up-to-date.
202202+the client already is up to date.
203203204204Otherwise, it enters the negotiation phase, where the client and
205205server determine what the minimal packfile necessary for transport is,
+2-2
Documentation/technical/trivial-merge.txt
···3232If multiple cases apply, the one used is listed first.
33333434A result which changes the index is an error if the index is not empty
3535-and not up-to-date.
3535+and not up to date.
36363737Entries marked '+' have stat information. Spaces marked '*' don't
3838affect the result.
···6565left in stage 0, and there are no other entries.
66666767A result of "no merge" is an error if the index is not empty and not
6868-up-to-date.
6868+up to date.
69697070*empty* means that the tree must not have a directory-file conflict
7171 with the entry.
+7-5
Documentation/user-manual.txt
···20442044remote branch, then it will fail with an error like:
2045204520462046-------------------------------------------------
20472047-error: remote 'refs/heads/master' is not an ancestor of
20482048- local 'refs/heads/master'.
20492049- Maybe you are not up-to-date and need to pull first?
20502050-error: failed to push to 'ssh://yourserver.com/~you/proj.git'
20472047+ ! [rejected] master -> master (non-fast-forward)
20482048+error: failed to push some refs to '...'
20492049+hint: Updates were rejected because the tip of your current branch is behind
20502050+hint: its remote counterpart. Integrate the remote changes (e.g.
20512051+hint: 'git pull ...') before pushing again.
20522052+hint: See the 'Note about fast-forwards' in 'git push --help' for details.
20512053-------------------------------------------------
2052205420532055This can happen, for example, if you:
···21932195Linus's tree will be stored in the remote-tracking branch named origin/master,
21942196and can be updated using linkgit:git-fetch[1]; you can track other
21952197public trees using linkgit:git-remote[1] to set up a "remote" and
21962196-linkgit:git-fetch[1] to keep them up-to-date; see
21982198+linkgit:git-fetch[1] to keep them up to date; see
21972199<<repositories-and-branches>>.
2198220021992201Now create the branches in which you are going to work; these start out
+2-2
builtin/merge.c
···13591359 * If head can reach all the merge then we are up to date.
13601360 * but first the most common case of merging one remote.
13611361 */
13621362- finish_up_to_date(_("Already up-to-date."));
13621362+ finish_up_to_date(_("Already up to date."));
13631363 goto done;
13641364 } else if (fast_forward != FF_NO && !remoteheads->next &&
13651365 !common->next &&
···14421442 }
14431443 }
14441444 if (up_to_date) {
14451445- finish_up_to_date(_("Already up-to-date. Yeeah!"));
14451445+ finish_up_to_date(_("Already up to date. Yeeah!"));
14461446 goto done;
14471447 }
14481448 }
+2-2
contrib/examples/git-merge.sh
···399399?,1,"$1",*)
400400 # If head can reach all the merge then we are up to date.
401401 # but first the most common case of merging one remote.
402402- finish_up_to_date "Already up-to-date."
402402+ finish_up_to_date "Already up to date."
403403 exit 0
404404 ;;
405405t,1,"$head",*)
···459459 done
460460 if test "$up_to_date" = t
461461 then
462462- finish_up_to_date "Already up-to-date. Yeeah!"
462462+ finish_up_to_date "Already up to date. Yeeah!"
463463 exit 0
464464 fi
465465 ;;
+1-1
contrib/examples/git-resolve.sh
···41414242case "$common" in
4343"$merge")
4444- echo "Already up-to-date. Yeeah!"
4444+ echo "Already up to date. Yeeah!"
4545 dropheads
4646 exit 0
4747 ;;
+1-1
contrib/subtree/t/t7900-subtree.sh
···253253 # this shouldn not actually do anything, since FETCH_HEAD
254254 # is already a parent
255255 result=$(git merge -s ours -m "merge -s -ours" FETCH_HEAD) &&
256256- check_equal "${result}" "Already up-to-date."
256256+ check_equal "${result}" "Already up to date."
257257 )
258258'
259259
+1-1
git-gui/po/README
···165165the translation of existing messages, or because the git-gui software
166166itself was updated and there are new messages that need translation.
167167168168-In any case, make sure you are up-to-date before starting your work:
168168+In any case, make sure you are up to date before starting your work:
169169170170 $ git checkout master
171171 $ git pull
+1-1
git-merge-octopus.sh
···74747575 case "$LF$common$LF" in
7676 *"$LF$SHA1$LF"*)
7777- eval_gettextln "Already up-to-date with \$pretty_name"
7777+ eval_gettextln "Already up to date with \$pretty_name"
7878 continue
7979 ;;
8080 esac
+1-1
git-p4.py
···3614361436153615 def rebase(self):
36163616 if os.system("git update-index --refresh") != 0:
36173617- die("Some files in your working directory are modified and different than what is in your index. You can use git update-index <filename> to bring the index up-to-date or stash away all your changes with git stash.");
36173617+ die("Some files in your working directory are modified and different than what is in your index. You can use git update-index <filename> to bring the index up to date or stash away all your changes with git stash.");
36183618 if len(read_pipe("git diff-index HEAD --")) > 0:
36193619 die("You have uncommitted changes. Please commit them before rebasing or stash them away with git stash.");
36203620
+1-1
merge-recursive.c
···19271927 }
1928192819291929 if (oid_eq(&common->object.oid, &merge->object.oid)) {
19301930- output(o, 0, _("Already up-to-date!"));
19301930+ output(o, 0, _("Already up to date!"));
19311931 *result = head;
19321932 return 1;
19331933 }
+1-1
notes-merge.c
···624624 if (!oidcmp(&remote->object.oid, base_oid)) {
625625 /* Already merged; result == local commit */
626626 if (o->verbosity >= 2)
627627- printf("Already up-to-date!\n");
627627+ printf("Already up to date!\n");
628628 oidcpy(result_oid, &local->object.oid);
629629 goto found_result;
630630 }
+1-1
remote.c
···20842084 _(" (use \"git branch --unset-upstream\" to fixup)\n"));
20852085 } else if (!ours && !theirs) {
20862086 strbuf_addf(sb,
20872087- _("Your branch is up-to-date with '%s'.\n"),
20872087+ _("Your branch is up to date with '%s'.\n"),
20882088 base);
20892089 } else if (!theirs) {
20902090 strbuf_addf(sb,
+2-2
t/t6040-tracking-info.sh
···100100 (
101101 cd test && git checkout b6
102102 ) >actual &&
103103- test_i18ngrep "Your branch is up-to-date with .origin/master" actual
103103+ test_i18ngrep "Your branch is up to date with .origin/master" actual
104104'
105105106106test_expect_success 'status (diverged from upstream)' '
···130130 # reports nothing to commit
131131 test_must_fail git commit --dry-run
132132 ) >actual &&
133133- test_i18ngrep "Your branch is up-to-date with .origin/master" actual
133133+ test_i18ngrep "Your branch is up to date with .origin/master" actual
134134'
135135136136cat >expect <<\EOF
+1-1
templates/hooks--pre-rebase.sample
···5858 not_in_topic=`git rev-list "^$topic" master`
5959 if test -z "$not_in_topic"
6060 then
6161- echo >&2 "$topic is already up-to-date with master"
6161+ echo >&2 "$topic is already up to date with master"
6262 exit 1 ;# we could allow it, but there is no point.
6363 else
6464 exit 0
+1-1
unpack-trees.c
···163163 msgs[ERROR_BIND_OVERLAP] = _("Entry '%s' overlaps with '%s'. Cannot bind.");
164164165165 msgs[ERROR_SPARSE_NOT_UPTODATE_FILE] =
166166- _("Cannot update sparse checkout: the following entries are not up-to-date:\n%s");
166166+ _("Cannot update sparse checkout: the following entries are not up to date:\n%s");
167167 msgs[ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN] =
168168 _("The following working tree files would be overwritten by sparse checkout update:\n%s");
169169 msgs[ERROR_WOULD_LOSE_ORPHANED_REMOVED] =