Difference between revisions of "Merging WPS"

From openwfm
Jump to navigation Jump to search
(3.3.1)
Line 1: Line 1:
==clone WPS and add wrf-fire as a branch==
+
==Clone WPS and add wrf-fire as a branch==
 
<pre>
 
<pre>
 
git clone git@github.com:wrf-model/WPS.git
 
git clone git@github.com:wrf-model/WPS.git
Line 7: Line 7:
 
git fetch wrf-fire
 
git fetch wrf-fire
 
git checkout -b wrf-fire-track/master wrf-fire/master
 
git checkout -b wrf-fire-track/master wrf-fire/master
 +
</pre>
 +
etc.
 +
 +
==Compare WPS versions==
 +
===3.3.1===
 +
<pre>
 +
git checkout wrf-fire-track/wps3.4
 +
git checkout HEAD^
 +
HEAD is now at 5e1819bd WPS update to version 3.3.1
 +
cp -a WPS ../wps3.3.1
 +
git checkout RELEASE-3-3-1
 +
HEAD is now at bedb19c7 tagging 3.3.1 release
 +
diff -r -x .git . ../wps3.3.1
 +
Only in .: test_suite
 +
Only in ./util: make_regression_data.tar
 +
Only in ./util: regtest_wps.csh
 +
Only in ./util: wps_reg.html
 +
Only in ./util: wps_reg_html_maker.csh
 +
Only in ./util: zap_reg.csh
 
</pre>
 
</pre>

Revision as of 02:02, 24 April 2019

Clone WPS and add wrf-fire as a branch

git clone git@github.com:wrf-model/WPS.git
cd WPS
git remote add wrf-fire git@github.com:openwfm/wrf-fire.git
git fetch git@github.com:openwfm/wrf-fire.git
git fetch wrf-fire
git checkout -b wrf-fire-track/master wrf-fire/master

etc.

Compare WPS versions

3.3.1

git checkout wrf-fire-track/wps3.4
git checkout HEAD^
HEAD is now at 5e1819bd WPS update to version 3.3.1
cp -a WPS ../wps3.3.1
git checkout RELEASE-3-3-1
HEAD is now at bedb19c7 tagging 3.3.1 release
 diff -r -x .git . ../wps3.3.1
Only in .: test_suite
Only in ./util: make_regression_data.tar
Only in ./util: regtest_wps.csh
Only in ./util: wps_reg.html
Only in ./util: wps_reg_html_maker.csh
Only in ./util: zap_reg.csh