# Instrument Specific Reprocessing Scripts and Files This project contains specific reprocessing scrips and files that are tied to a specific instrument or VAP. The structure of this area will contain directories with this structure: directory for each individual instrument or VAP -- dictionary files -- individual RID directory containing scripts and any RID specific files # GitHub cheat sheet https://services.github.com/on-demand/downloads/github-git-cheat-sheet.pdf # Command line instructions Here are some basic instructions for using Git with this project ## Git global setup git config --global user.name "Jane Doe" git config --global user.email "jane.doe@arm.gov" ## Create a new repository git clone git@code.arm.gov:docs/git-commands.git cd instrument touch README.md git add README.md git commit -m "add README" git push -u origin master ## Existing folder cd existing_folder git init git remote add origin git@code.arm.gov:docs/git-commands.git git add . git commit -m "Initial commit" git push -u origin master ## Existing Git repository cd existing_repo git remote add origin git@code.arm.gov:docs/git-commands.git git push -u origin --all git push -u origin --tags