File tree Expand file tree Collapse file tree 3 files changed +21
-24
lines changed Expand file tree Collapse file tree 3 files changed +21
-24
lines changed Original file line number Diff line number Diff line change
1
+ Git v1.7.9.1 Release Notes
2
+ ==========================
3
+
4
+ Fixes since v1.7.9
5
+ ------------------
6
+
7
+ * Subprocesses spawned from various git programs were often left running
8
+ to completion even when the top-level process was killed.
9
+
10
+ * "git log --first-parent $pathspec" did not stay on the first parent
11
+ chain and veered into side branch from which the whole change to the
12
+ specified paths came.
13
+
14
+ * "git push -q" was not sufficiently quiet.
15
+
16
+ * When "git push" fails to update any refs, the client side did not
17
+ report an error correctly to the end user.
18
+
19
+ Also contains minor fixes and documentation updates.
Original file line number Diff line number Diff line change @@ -69,9 +69,10 @@ Documentation for older releases are available here:
69
69
link:RelNotes/1.7.7.1.txt[1.7.7.1],
70
70
link:RelNotes/1.7.7.txt[1.7.7].
71
71
72
- * link:v1.7.6.5 /git.html[documentation for release 1.7.6.5 ]
72
+ * link:v1.7.6.6 /git.html[documentation for release 1.7.6.6 ]
73
73
74
74
* release notes for
75
+ link:RelNotes/1.7.6.6.txt[1.7.6.6],
75
76
link:RelNotes/1.7.6.5.txt[1.7.6.5],
76
77
link:RelNotes/1.7.6.4.txt[1.7.6.4],
77
78
link:RelNotes/1.7.6.3.txt[1.7.6.3],
Original file line number Diff line number Diff line change @@ -42,36 +42,13 @@ struct store_conf {
42
42
unsigned trash_remote_new :1 , trash_only_new :1 ;
43
43
};
44
44
45
- struct string_list {
46
- struct string_list * next ;
47
- char string [1 ];
48
- };
49
-
50
- struct channel_conf {
51
- struct channel_conf * next ;
52
- char * name ;
53
- struct store_conf * master , * slave ;
54
- char * master_name , * slave_name ;
55
- char * sync_state ;
56
- struct string_list * patterns ;
57
- int mops , sops ;
58
- unsigned max_messages ; /* for slave only */
59
- };
60
-
61
- struct group_conf {
62
- struct group_conf * next ;
63
- char * name ;
64
- struct string_list * channels ;
65
- };
66
-
67
45
/* For message->status */
68
46
#define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */
69
47
#define M_DEAD (1<<1) /* expunged */
70
48
#define M_FLAGS (1<<2) /* flags fetched */
71
49
72
50
struct message {
73
51
struct message * next ;
74
- /* struct string_list *keywords; */
75
52
size_t size ; /* zero implies "not fetched" */
76
53
int uid ;
77
54
unsigned char flags , status ;
You can’t perform that action at this time.
0 commit comments