Skip to content

jk/mrpara

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Global setup

Next step

  • mkdir mrpara
  • cd mrpara
  • git init
  • touch README
  • git add README
  • git commit -m 'first commit'
  • git remote add origin [email protected]:jk/mrpara.git
  • git push origin master

Exisiting Git Repo?

  • cd existing_git_repo
  • git remote add origin [email protected]:jk/mrpara.git
  • git push origin master

Importing a SVN Repo?

Click here

When you're done

Continue

GitHub specific

Look over the Guidesection. You should also customize your ~/.gitconfig .

.gitconfig

[user]
	name = Jens Kohl
	email = [email protected]
	signingkey = 8EFDF903
[color]
	status = auto
	diff = auto
	branch = auto
	interactive = auto
[alias]
	st = status
	ci = commit
	co = checkout
	l = log
	staged = diff --cached
	unstaged = diff
	both = diff HEAD
	oneline = log --pretty=oneline
	amend = commit --amend
[merge]
	tool = opendiff
[sendemail]
	smtpserver = example.com
	aliasesfile = /Users/jkohl/.gitaliases
	aliasfiletype = mailrc
	smtpuser = user
	smtppass = geheim
	smtpssl = true
[format]
	numbered = auto
[core]
	legacyheaders = false
	excludesfile = /etc/gitexcludes
	editor = mate -w
[repack]
	usedeltabaseoffset = true
[github]
	user = jk
	token = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Die Daten für die github-Direktive gibt es unter Accounts.

Forken, Pullen und Pushen

Forken sollte man gar nicht, wenn man als Contributor eingetragen ist. Pullen geht mit git pull origin master und pushen mit git push origin master

About

Code Repository for parallel programming lecture

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages