Skip to content

Instantly share code, notes, and snippets.

@drankard
Created October 29, 2010 12:14
Show Gist options
  • Save drankard/653437 to your computer and use it in GitHub Desktop.
Save drankard/653437 to your computer and use it in GitHub Desktop.
hvordan man udfører en pull request
Step 1: Check out a new branch to test the changes — run this from your project directory
git checkout -b drankard-master master
Step 2: Bring in drankard's changes and test
git pull git@github.com:drankard/kunde.git master
Step 3: Merge the changes and update the server
git checkout master
git merge drankard-master
git push origin master
@drankard
Copy link
Author

drankard commented Nov 4, 2010

For at udføre dette skal du have lavet en ren clone af det repository der skal pushes til.
i dette ekt vil det være
git@github.com:YouSee/kunde.git

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