罗泽轩

Results 435 comments of 罗泽轩

The docs said: > if tags exist, then only the most-recent commits are output up to the last identified tag So only commits since the last tag is shown unless...

Did you run `git changelog` on your branch or on master? Have you made any tags on your branch? I found something interesting may be in charge of the result.

Most of command-line utility use [GNU readline](https://wiki.archlinux.org/index.php/readline) to implement interactive autocompletion. But GNU readline doesn't have binding for shell, so it is very tough to implement one with pure bash...

The `work` is deleted because `git delete-branch` will delete the upstream of given branch automatically. It seems that feature make a mess sometimes...

@hemanth @nicolaiskogheim Should we add an new option, to avoid deleting the upstream branch?

@hallzy Because it is created with `--track`, `test` is tracking `master`. So in git's term, `master` is the upstream of `test`, though it isn't a branch existed in remote repo....

@tuminoid Sorry for the loss caysed by our tool... Could you try the code from the master branch to see if the thing works well?

@tuminoid Interesting. I notice that when you try to `git push` the newly created `fea-foo`, it successed. But when I tried it, I got: ``` ¥ LC_ALL=C git push fatal:...

@tuminoid I installed git with `2.17.0` and configure `push.default = current`. But the `git-sed` in the master branch works well in my machine. Probably I missed something. Would you add...

I am curious about why we need to run CI on power? Since the bash tools should be arch independent.