GithubHelp home page GithubHelp logo

aldenks / efm-gpu Goto Github PK

View Code? Open in Web Editor NEW
0.0 6.0 0.0 409 KB

Elementary Flux Mode Analysis class project for Tufts Comp 150 GPU

C++ 61.62% C 31.72% Objective-C 6.06% Perl 0.27% Shell 0.33%

efm-gpu's Introduction

Elementary Flux Mode Analysis

Comp 150 GPU

Git Workflow

We will be using only one branch (the master branch) for simplicity. By default you are on the master branch so you don't need to worry about branches.

Initial Setup

If you haven't used git with github before, do

git config --global user.name "Your Name Here"
git config --global user.email "[email protected]"

This email should be the one you used to sign up with github.

Now, just clone the repository into a directory of your choosing. This will create a folder efm-gpu containing the project.

git clone [email protected]:aldenks/efm-gpu.git

Adding New Files

git add <filename or directory> # makes git aware of all files/directories of files provided, but does not commit any changes.
  # eg. 'git add .' will add all the files in the current subtree
git commit -m "Your helpful commit message. eg. Added README"

Regular Workflow

make some changes to files, then commit them:

git commit -am "Commit message. eg. Refactored dependency checking, better documentation"

The -a flag is important, it says commit changes to files that git is aware of. If you don't add it nothing will be commited.

When you're ready to share one or more commits with everyone else, first commit all your local changes, then

git pull # make sure you have the lastest changes from the server
git push # push your commits to the server

When you pull, you may have some "merge conflicts." This means you and someone else both made changes to the same part of the same file and git can't figure out how to automatically merge them. Git will tell you which files have conflicts. Open these files and edit them to be how you want them. They will have lines of <<<< and >>>> separating the edits from you and someone else. Save the files, then commit them and push.

Other Useful Commands

git status # lets you know what files are modified, commited, etc.
git log    # shows you a list of recent commits
git diff   # shows you what has changed since your last commit. Good to look at before commiting

efm-gpu's People

Contributors

aldenks avatar dnunez02 avatar eullah01 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.