+[2014-10-05T20:43:56Z]milkio, that kind of reference +[2014-10-05T20:45:33Z]MikeClassicsoerry I meant to reference an issue in another repo via commit msg, not another commit.. sorry +[2014-10-05T20:50:16Z]milkiwell, issues can still do that, so its all good +[2014-10-05T21:20:12Z]VxJasonxVMikeClassic: just link to it +[2014-10-05T21:20:26Z]VxJasonxVit will be shortened and referenced (provided you have push access to it, I think)
+[2014-10-06T00:54:42Z]xandrosHello, I have a repository on github and when I cloned it to my local machine and do a git branch in the command line, I only see master. Is there a way to pull/clone all branches from remote? +[2014-10-06T01:29:13Z]VxJasonxVgit checkout -b branch-name +[2014-10-06T01:29:30Z]VxJasonxVyou have all of the objects already, git just doesn't "set up" all the branches +[2014-10-06T01:29:32Z]VxJasonxVbut all of the data is there +[2014-10-06T01:29:52Z]VxJasonxVsince they're existing branches, you probably want to do: git checkout -b branch-name origin/branch-name