Reviewing merge request #1: Silly changes

You probably shouldn't merge this as there aren't any notable improvements.

Commits that would be merged:

Version 1
  • Version 1
  • f984361
  • 354d045
  • Trying to make things work on TI nemo build machine.

  • 71268f2
  • Trying to figure out how to get git-proxy to not use corkscrew when it doesn't exist, but I don't have it working yet.

  • ec105fb
  • Fix spelling issue.

  • 3bd2a51
  • Added aliases for the proper board names.

  • d8fc0f3
  • If the vm file doesn't exist, don't touch it!

  • c038515
  • Just trying to make it a bit simpler.

  • 667c254
  • oebb.sh: since 44ecf674747fef9f71f928660b394ca470a135fc OE doesn't need the mmap hack anymore

Showing f984361-354d045

Comments

Now I know what a ‘merge request’ looks like :) I expected a “merge me” button, but there isn’t, not even a hint on how to merge using the cmdline :(

Wait, there’s a “How to apply this merge request to your repository” box at the far bottom of this page :)

One way to merge in these changes is to pull them into a local branch for review, verifying the changes and then merge to back to master.

Check out a new branch for integration

git checkout -b integration

Fetch the merge request into this branch

git pull <br/> git://gitorious.org/angstrom/angstrom-setup-scripts.git <br/> refs/merge-requests/1

Show the commits, assess they are okay

git log —pretty=oneline —abbrev-commit master..integration

To apply the changes to your master branch:

git checkout master
git merge integration
git push origin master

Add a new comment:

Login or create an account to post a comment

How to apply this merge request to your repository