Skip to content

Instantly share code, notes, and snippets.

@jasonsee
Forked from mattd/gist:5354661
Created April 10, 2013 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonsee/5355629 to your computer and use it in GitHub Desktop.
Save jasonsee/5355629 to your computer and use it in GitHub Desktop.
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:g1nn13/jakarta
[branch "master"]
remote = origin
merge = refs/heads/master
[remote "mattd"]
fetch = +refs/heads/*:refs/remotes/mattd/*
url = git@github.com:mattd/jakarta
# common workflow
# get most recent changes from g1nn13
git fetch
git merge origin/master
# make a new topic branch
git checkout -b new-modal
# do some work
# check in your work
git commit -am "Make the modal more better."
# either merge locally...
git checkout master
git merge new-modal
# ...and push to your repo's master
git push mattd master
# then submit a pull request for master -> master
# ...or push your topic branch to github
git push mattd new-modal
# then submit a pull request for new-modal -> master
@jasonsee
Copy link
Author

Step one is actually hit "Fork" on the https://github.com/g1nn13/jakarta page - this forks over to your github account.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment