Last active
March 23, 2016 13:06
-
-
Save mattd/5354661 to your computer and use it in GitHub Desktop.
Revisions
-
mattd revised this gist
Apr 10, 2013 . 2 changed files with 27 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ # 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 -
mattd created this gist
Apr 10, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = [email protected]:g1nn13/jakarta [branch "master"] remote = origin merge = refs/heads/master [remote "mattd"] fetch = +refs/heads/*:refs/remotes/mattd/* url = [email protected]:mattd/jakarta