File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,11 @@ Shawn O. Pearce <spearce@spearce.org>
3535Theodore Ts'o <tytso@mit.edu>
3636Tony Luck <tony.luck@intel.com>
3737Uwe Kleine-König <zeisberg@informatik.uni-freiburg.de>
38+ Uwe Kleine-König <Uwe_Zeisberger@digi.com>
39+ Uwe Kleine-König <uzeisberger@io.fsforth.de>
40+ Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de>
3841Ville Skyttä <scop@xemacs.org>
3942YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
4043anonymous <linux@horizon.com>
4144anonymous <linux@horizon.net>
45+ Dana L. How <how@deathvalley.cswitch.com>
Original file line number Diff line number Diff line change @@ -548,7 +548,6 @@ lightweight (non-annotated) tags see the `reset` command below.
548548 'from' SP <committish> LF
549549 'tagger' SP <name> SP LT <email> GT SP <when> LF
550550 data
551- LF
552551....
553552
554553where `<name>` is the name of the tag to create.
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ reachable from `r1` from the set of commits reachable from
255255A similar notation "`r1\...r2`" is called symmetric difference
256256of `r1` and `r2` and is defined as
257257"`r1 r2 --not $(git-merge-base --all r1 r2)`".
258- It it the set of commits that are reachable from either one of
258+ It is the set of commits that are reachable from either one of
259259`r1` or `r2` but not from both.
260260
261261Two other shorthands for naming a set that is formed by a commit
Original file line number Diff line number Diff line change @@ -18,7 +18,14 @@ usage() {
1818}
1919
2020get_repo_base () {
21- (cd " $1 " && (cd .git ; pwd)) 2> /dev/null
21+ (
22+ cd " ` /bin/pwd` " &&
23+ cd " $1 " &&
24+ {
25+ cd .git 2> /dev/null
26+ pwd
27+ }
28+ )
2229}
2330
2431if [ -n " $GIT_SSL_NO_VERIFY " ]; then
You can’t perform that action at this time.
0 commit comments