-
-
Save jasonsee/5355629 to your computer and use it in GitHub Desktop.
This file contains 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 characters
[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 |
This file contains 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 characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Step one is actually hit "Fork" on the https://github.com/g1nn13/jakarta page - this forks over to your github account.