Giter Site home page Giter Site logo

osm's Introduction

OSM

Styresystemer og multiprogrammering

Pre-release af OSM Virtualbox kan findes her: http://napoleon.hiperfit.dk/~oleks/osm16-v1.0.ova

Compiling

  • gcc -o -Wall -Wextra -pedantic lol lol.c

How To Use Git with GitHub

Install Git Package on Debian
sudo apt-get install git-core
Add a SSH Key

Run the following commands to add a SSH Key to your SSH-agent so you can use git without logging in again and again. It is important that you stand in your home directory

Generates a new set of SSH-keys both private and public, it will ask you to create a password.

cd .ssh && ssh-keygen -t rsa -b 4096 -C "[email protected]"

Add your private SSH-Key to your computers ssh-mannager

ssh-add

Add your public SSH-key to GitHub

cat id_rsa.pub

Now copy the latest output and go to GitHub to add the public SSH Key to your account

Source: https://help.github.com/articles/generating-ssh-keys/

Download repository from github
git clone [email protected]:Username/Repo.git
Add new files to the tracking list
git add filename.sh             // Adds everything to next push
git status            // shows changes you are about to commit
git commit -m "Some Comment"  // Prepare for push
git push            // You are sending all chosen changes to your repository
If you are ahead in branches use
git push origin master
Remove files from repository
git rm filemane         // Removes file from repo on next push
git status            // Shows changes you are about to commit
git commit -m "Removed some files"  // Prepare for push
git push            // you are sending all chosen changes to your repository
Download changes
git pull
Branching
Create and start working on new branch
git checkout -b branchname
Deletion of Branch
git branch -d branchname
Merge branch into master branch
git checkout master
git merge branchname
Having trouble with keeping up with git? Try this

osm's People

Contributors

ptxdk avatar

Watchers

James Cloos 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.