Case sensitivity fix + camera logic encapsulation #121

Merged
moorehousew merged 3 commits from master into master 2015-06-12 17:38:59 -04:00
moorehousew commented 2015-06-12 17:22:46 -04:00 (Migrated from github.com)

Accidentally disabled VS' hosting process, so the third commit fixes that.

Accidentally disabled VS' hosting process, so the third commit fixes that.
ddevault commented 2015-06-12 17:28:54 -04:00 (Migrated from github.com)

I love the camera change, but you're right that it should be on its own. Try this:

# This checks out a branch named "fix-case-sensitivity"
git checkout -b fix-case-sensitivity
# This removes the past three commits so you can do it cleanly
git reset --hard HEAD~3
# This grabs the only commits you want
git cherry-pick 2b1bf08
git cherry-pick 2075244
# This will merge the two commits together, as if you hadn't made the VS hosting process mistake
git rebase -i HEAD~2
# This pushes your branch. Make a pull request after you push this.
git push -u origin fix-case-sensitivity
# New branch for camera work, based on master
git checkout -b isolate-camera master
git reset --hard HEAD~3
# Pick just that commit
git cherry-pick de1ffa2
# Push and open second pull request
git push -u origin isolate-camera
# Finally, we can remove the commits from master so that your master branch doesn't get fucked up when we merge
git checkout master
git reset --hard HEAD~3
I love the camera change, but you're right that it should be on its own. Try this: ``` # This checks out a branch named "fix-case-sensitivity" git checkout -b fix-case-sensitivity # This removes the past three commits so you can do it cleanly git reset --hard HEAD~3 # This grabs the only commits you want git cherry-pick 2b1bf08 git cherry-pick 2075244 # This will merge the two commits together, as if you hadn't made the VS hosting process mistake git rebase -i HEAD~2 # This pushes your branch. Make a pull request after you push this. git push -u origin fix-case-sensitivity # New branch for camera work, based on master git checkout -b isolate-camera master git reset --hard HEAD~3 # Pick just that commit git cherry-pick de1ffa2 # Push and open second pull request git push -u origin isolate-camera # Finally, we can remove the commits from master so that your master branch doesn't get fucked up when we merge git checkout master git reset --hard HEAD~3 ```
moorehousew commented 2015-06-12 17:37:55 -04:00 (Migrated from github.com)

Okay, I've run the commands, so I'll just add pull requests for both branches then?

Okay, I've run the commands, so I'll just add pull requests for both branches then?
ddevault commented 2015-06-12 17:38:57 -04:00 (Migrated from github.com)

In theory, yes, but looking at your fork it appears that you've done it wrong. On second thought, I'm going to merge both anyway, so who cares.

In theory, yes, but looking at your fork it appears that you've done it wrong. On second thought, I'm going to merge both anyway, so who cares.
moorehousew commented 2015-06-12 17:39:26 -04:00 (Migrated from github.com)

Sorry, command-line GIT is not my forte.

Sorry, command-line GIT is not my forte.
ddevault commented 2015-06-12 17:39:51 -04:00 (Migrated from github.com)

No worries.

No worries.
This repo is archived. You cannot comment on pull requests.
No Reviewers
1 Participants
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: AstralTransRocketries/TrueCraft#121
No description provided.