committing - UNR-CFB/lahontan GitHub Wiki
Committing changes to the RNA-Seq pipeline repository
The following commands assume you are operating from the project root directory.
-
Pull the newest changes from the repository before attempting to push.
git pull origin -
Stage your commit.
git add . -
Check the staged commit contains all the expected changes.
git status -
Commit the changes. A text editor will start. Input a description of your changes and save the file.
git commit -m "commit description" -
Push your changes to GitHub.
git push origin