+ [2015-08-28T18:50:02Z] Remram "git remote add myfork git@github.com:YOURUSERNAME/YOURREPO.git"
+ [2015-08-28T18:50:49Z] Remram hmm that first slash should be : in the first command I gave you, I'm sure you figured it out
+ [2015-08-28T19:10:06Z] bttf turned out to be the project was not doing "full" releases but tags, so did a call to tags endpoint and found what I needed
+ [2015-08-28T20:10:20Z] nedbat using the "hub" command line tool, can I get "hub pull-request" not prompt for a comment, and then open the pull request page in my browser?
+ [2015-08-28T21:48:23Z] bttf I've figured out how to upload assets to releases via github API; trying to figure out a way to do it to tags ... it's not mentioned in the docs, but via GitHub UI it ispossible to upload binaries with a tagged commit

message no. 109926

Posted by bttf in #github at 2015-08-28T18:14:18Z

I just created a new personal access token for the API but for some reason am receiving an empty array when I request releases for a repo that I know has a whole bunch ... I enabled all the read:repo related access rights to the token ... could I be missing something?
+ [2015-08-29T05:23:05Z] octopressfan I'm using octopress using github pages, I wanted to know how to delete specific commit log history from github without changing the code state?
+ [2015-08-29T06:13:18Z] thibaultcha octopressfan Check !fixup_hints
+ [2015-08-29T06:13:18Z] gitinfo Hints for fixing commits are: (1) NOT PUSHED/PUBLISHED: `git rebase -i $COMMIT^` or perhaps `git commit --amend` (or `git reset HEAD^`). (2) OTHERWISE, `git revert $COMMIT` to make a reverse commit. (3) If you have pushed and MUST remove it, use rebase or filter-branch and type !rewrite in IRC to learn about the implications.
+ [2015-08-29T06:14:34Z] atralheaven_ Hi, I want to use github to host my web page, I've created my account and set up repo for github pages, I can access mypage.github.io and everything works fine, but now I want to upload some files, how can I do it? what is the simplest way?
+ [2015-08-29T06:15:40Z] Seveas atralheaven_: clone the repo, commit the files, push