Soil biogeochemical testbed
Code Repository
Created by Will Wieder, Melannie Hartman, Ben Sulman, Emily Kyker-Snowman, Brooke Eastman, & Ying-Ping Wang:
Updated Feb 10, 2023 Aug. 29, 2018
Feb 2023 updates include:
Aug 2018 updates include:
The MIT License (MIT)
Copyright (c) 2024 Will Wieder, Melannie Hartman, Ben Sulman, Emily Kyker-Snowman & Ying-Ping Wang:
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Fork this repository to your personal repo (fork
button in the upper right)
Then, from the local directory you want to work from you can use the following commands
origin
) to your local directorygit clone https://github.com/user
/biogeochem_testbed_1.1.git
cd biogeochem_testbed_1.1
upstream
git remote add upstream https://github.com/wwieder/biogeochem_testbed_1.1.git
git remote -v
git checkout –no-track -b Testbed_CN origin/Testbed_CN
git checkout -b –track Testbed_CN upstream/Testbed_CN
git status upstream/master
git pull upstream master
git merge
git rebase upstream/master
mkdir POINT
mv file_x
POINT/.
git status (are there any files to track or add?)
git add POINT
git status (now the directory point
is staged for commit)
git commit (this will open up a text file where you can add comments
git log –decorate –oneline –graph
git checkout –no-track -b mybranch upstream/master
git fetch –all
git checkout –track upstream/Testbed_CN
git checkout Testbed_CN
git pull
git -b Testbed_CN_v2 Testbed_CN