File tree Expand file tree Collapse file tree 4 files changed +9
-27
lines changed Expand file tree Collapse file tree 4 files changed +9
-27
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,6 @@ public bool IncludeUntrackedInLocalChanges
50
50
set ;
51
51
} = true ;
52
52
53
- public DealWithLocalChanges DealWithLocalChangesOnCheckoutBranch
54
- {
55
- get ;
56
- set ;
57
- } = DealWithLocalChanges . DoNothing ;
58
-
59
53
public bool EnableForceOnFetch
60
54
{
61
55
get ;
@@ -68,12 +62,6 @@ public bool FetchWithoutTags
68
62
set ;
69
63
} = false ;
70
64
71
- public DealWithLocalChanges DealWithLocalChangesOnPull
72
- {
73
- get ;
74
- set ;
75
- } = DealWithLocalChanges . DoNothing ;
76
-
77
65
public bool PreferRebaseInsteadOfMerge
78
66
{
79
67
get ;
@@ -116,12 +104,6 @@ public bool PushToRemoteWhenDeleteTag
116
104
set ;
117
105
} = false ;
118
106
119
- public DealWithLocalChanges DealWithLocalChangesOnCreateBranch
120
- {
121
- get ;
122
- set ;
123
- } = DealWithLocalChanges . DoNothing ;
124
-
125
107
public bool CheckoutBranchOnCreateBranch
126
108
{
127
109
get ;
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ public string Branch
11
11
12
12
public Models . DealWithLocalChanges PreAction
13
13
{
14
- get => _repo . Settings . DealWithLocalChangesOnCheckoutBranch ;
15
- set => _repo . Settings . DealWithLocalChangesOnCheckoutBranch = value ;
16
- }
14
+ get ;
15
+ set ;
16
+ } = Models . DealWithLocalChanges . DoNothing ;
17
17
18
18
public Checkout ( Repository repo , string branch )
19
19
{
Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ public object BasedOn
21
21
22
22
public Models . DealWithLocalChanges PreAction
23
23
{
24
- get => _repo . Settings . DealWithLocalChangesOnCreateBranch ;
25
- set => _repo . Settings . DealWithLocalChangesOnCreateBranch = value ;
26
- }
24
+ get ;
25
+ set ;
26
+ } = Models . DealWithLocalChanges . DoNothing ;
27
27
28
28
public bool CheckoutAfterCreated
29
29
{
Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ public Models.Branch SelectedBranch
40
40
41
41
public Models . DealWithLocalChanges PreAction
42
42
{
43
- get => _repo . Settings . DealWithLocalChangesOnPull ;
44
- set => _repo . Settings . DealWithLocalChangesOnPull = value ;
45
- }
43
+ get ;
44
+ set ;
45
+ } = Models . DealWithLocalChanges . DoNothing ;
46
46
47
47
public bool UseRebase
48
48
{
You can’t perform that action at this time.
0 commit comments