You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* merging 496 back to master
* turn into proper code blocks
* Update beam.conf
reset beam config
* get failing tests back up
* touch to get new build
* flaky test
* touch to rebuild
* make await short
* ignore single mode spec as on master
* analysis scripts
* cleaning up sf-light data
* change await to 60 sec
* updating PhyssimCalcLinkStats
* restart maybe flakey test
Copy file name to clipboardExpand all lines: docs/developers.rst
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,37 +112,37 @@ Production versus test data. Any branch beginning with "production" or "applicat
112
112
113
113
However, sometimes troubleshooting / debugging / development happens on a production branch. The cleanest way to get changes to source code or other non-production files back into master is the following.
114
114
115
-
Checkout your production branch:
115
+
Checkout your production branch::
116
116
117
117
git checkout production-branch
118
118
119
-
Bring branch even with master
119
+
Bring branch even with master::
120
120
121
121
git merge master
122
122
123
123
Resolve conflicts if needed
124
124
125
-
Capture the files that are different now between production and master:
125
+
Capture the files that are different now between production and master::
126
126
127
127
git diff --name-only HEAD master > diff-with-master.txt
128
128
129
129
You have created a file "diff-with-master.txt" containing a listing of every file that is different.
130
130
131
131
IMPORTANT!!!! -- Edit the file diff-with-master.txt and remove all production-related data (this typically will be all files underneath "production" sub-directory.
132
132
133
-
Checkout master
133
+
Checkout master::
134
134
135
135
git checkout master
136
136
137
-
Create a new branch off of master, this is where you will stage the files to then merge back into master:
137
+
Create a new branch off of master, this is where you will stage the files to then merge back into master::
138
138
139
139
git checkout -b new-branch-with-changes-4ci
140
140
141
-
Do a file by file checkout of all differing files from production branch onto master:
141
+
Do a file by file checkout of all differing files from production branch onto master::
Note, if any of our diffs include the deletion of a file on your production branch, then you will need to remove (i.e. with "git remove" these before you do the above "checkout" step and you should also remove them from the diff-with-master.txt". If you don't do this, you will see an error message ("did not match any file(s) known to git.") and the checkout command will not be completed.
145
+
Note, if any of our diffs include the deletion of a file on your production branch, then you will need to remove (i.e. with "git remove" these before you do the above "checkout" step and you should also remove them from the diff-with-master.txt"). If you don't do this, you will see an error message ("did not match any file(s) known to git.") and the checkout command will not be completed.
146
146
147
147
Finally, commit the files that were checked out of the production branch, push, and go create your pull request!
p<- ggplot(toplot,aes(x=hr,y=miles,fill=dead))+geom_bar(stat='identity')+labs(x="Hour",y="Vehicle Miles Traveled",fill="Empty",title=pp("TNC Deadheading"))+geom_text(data=dead.frac,hjust=1,aes(x=24,y=max(toplot$miles),label=dead.frac,fill=NA))+facet_wrap(~the.factor)
233
+
p<- ggplot(toplot,aes(x=hr,y=miles,fill=dead))+geom_bar(stat='identity')+labs(x="Hour",y="Vehicle Miles Traveled",fill="Empty",title=pp("Ride Hail Deadheading"))+geom_text(data=dead.frac,hjust=1,aes(x=24,y=max(toplot$miles),label=dead.frac,fill=NA))+facet_wrap(~the.factor)
0 commit comments