...
[16:18:28 CST(-0600)] <EricDalquist1> but having the correlation for one failed run could help
[16:18:56 CST(-0600)] <pandisaurus> I can do that no problem, its just odd
[16:19:06 CST(-0600)] <EricDalquist1> I agree
[16:19:21 CST(-0600)] <pandisaurus> what determines whether it says 'upgraded' next to the channel or not?
[16:19:58 CST(-0600)] <pandisaurus> since I have you here
[16:20:35 CST(-0600)] <EricDalquist1> it should say it for all of them
[16:20:43 CST(-0600)] <EricDalquist1> since you are importing .channel files from 3.2
[16:20:57 CST(-0600)] <EricDalquist1> the XML file has to be transformed into the 4.0 format
[16:20:59 CST(-0600)] <EricDalquist1> and then imported
[16:21:10 CST(-0600)] <EricDalquist1> that transform step is what prints out the upgraded message
[16:21:54 CST(-0600)] <pandisaurus> I'm showing 24 "upgraded" messages, but it says it found 104 files to import (104 should be accurate) is there a way to see what files its skipping and why?
[16:22:08 CST(-0600)] <EricDalquist1> is that after a failure?
[16:22:16 CST(-0600)] <pandisaurus> no I'm counting when its successful
[16:22:19 CST(-0600)] <EricDalquist1> hrm
[16:22:23 CST(-0600)] <EricDalquist1> that sounds like a bug
[16:22:35 CST(-0600)] <EricDalquist1> you should be seeing either the same numbers all the way through
[16:22:40 CST(-0600)] <EricDalquist1> or it should fail with a reason
[16:22:49 CST(-0600)] <EricDalquist1> stuff shouldn't get silently ignored
[16:23:39 CST(-0600)] <pandisaurus> hmmm, that's troublesome because it is silently ignoring. "git checkout" just updates to the most current version of the trunk right? If I'm not specifying a branch?
[16:25:16 CST(-0600)] <EricDalquist1> sorry
[16:25:40 CST(-0600)] <EricDalquist1> "git checkout branch-name" checks out the specified branch
[16:25:41 CST(-0600)] <EricDalquist1> locally
[16:25:50 CST(-0600)] <EricDalquist1> to updates to the branch you are currently on
[16:25:57 CST(-0600)] <EricDalquist1> do "git pull"
[16:26:18 CST(-0600)] <EricDalquist1> which is a shortcut for doing:
[16:26:18 CST(-0600)] <EricDalquist1> git fetch
[16:26:19 CST(-0600)] <EricDalquist1> git merge origin/current-branch-name
[16:26:34 CST(-0600)] <EricDalquist1> you can determine your current branch via "git status"
[16:26:41 CST(-0600)] <EricDalquist1> have to run though