pull-request

Why is the Approve button disabled in GitHub “pull request review”?

空扰寡人 提交于 2020-03-16 03:49:41
问题 Problem Background: So far I am the sole owner of a GitHub repo. I committed the code from my system to a branch called release (actually its a tag based on develop branch, if that matters). In GitHub, I created a pull request where base branch is master and compare branch is release. But I am only allowed to comment on review, not allowed to approve . What may be the reason? Note: There is no merge conflicts and while creating the pull request the green signal of merging possible was

Why is the Approve button disabled in GitHub “pull request review”?

不羁的心 提交于 2020-03-16 03:47:11
问题 Problem Background: So far I am the sole owner of a GitHub repo. I committed the code from my system to a branch called release (actually its a tag based on develop branch, if that matters). In GitHub, I created a pull request where base branch is master and compare branch is release. But I am only allowed to comment on review, not allowed to approve . What may be the reason? Note: There is no merge conflicts and while creating the pull request the green signal of merging possible was

How to tell if a pull request has given the maintainer the ability to edit the pull request?

杀马特。学长 韩版系。学妹 提交于 2020-03-05 06:05:29
问题 The initiator of a pull request may give the maintainer the ability to edit the pull request. For any given pull request, how can we tell if that ability has been granted? (preferably I would like to know via the browser, but cli is also fine) For clarity Here's the specifics of the case I'm trying to solve: I created a repo with some code Someone forked it, made changes, made a PR I want to make some adjustments before merging their PR As maintainer, I may or may not have permission to edit

How to tell if a pull request has given the maintainer the ability to edit the pull request?

夙愿已清 提交于 2020-03-05 06:05:13
问题 The initiator of a pull request may give the maintainer the ability to edit the pull request. For any given pull request, how can we tell if that ability has been granted? (preferably I would like to know via the browser, but cli is also fine) For clarity Here's the specifics of the case I'm trying to solve: I created a repo with some code Someone forked it, made changes, made a PR I want to make some adjustments before merging their PR As maintainer, I may or may not have permission to edit

Is it possible to change other people's code in pull requests (Github)?

£可爱£侵袭症+ 提交于 2020-03-03 12:05:26
问题 On a Github project, I see a guy made a pull request in Pull Requests section, but I find he made many mistakes so his code need to be corrected. Instead of asking him to change his code, is it possible to do it by myself (that is, I want to correct his code by myself)? and how? I'm also a member of that project, and I'm new :) 回答1: Assuming the original author is responsive enough, it’s always better to ask them to fix it (unless the change is an obvious typo fix, maybe). They might have a

Is it possible to change other people's code in pull requests (Github)?

坚强是说给别人听的谎言 提交于 2020-03-03 12:05:09
问题 On a Github project, I see a guy made a pull request in Pull Requests section, but I find he made many mistakes so his code need to be corrected. Instead of asking him to change his code, is it possible to do it by myself (that is, I want to correct his code by myself)? and how? I'm also a member of that project, and I'm new :) 回答1: Assuming the original author is responsive enough, it’s always better to ask them to fix it (unless the change is an obvious typo fix, maybe). They might have a

Android: Best way of handling continuous pulling from server?

穿精又带淫゛_ 提交于 2020-02-29 05:15:08
问题 To start of, i should mention that i'm a newbie in Android (Not that much experience in Java at all tbh), so be easy on me. I am making an app that continuously pulls data from a server, and then returns data through a http post request. The question is, what is the best way to handle the actual pulling from the server? Should i be using AsyncTask or create another thread and let it run on that? Are there better methods for this purpose? I will be pulling data every 5 minutes. (I am aware

github: Adding commits to existing pull request

百般思念 提交于 2020-01-30 14:08:45
问题 I opened a pull request to rails repo on github by using Fork & Edit this file file button. Now, After getting feedback on my PR, I wanted to add some more commits. so here is what I ended by doing $ git clone git@github.com:gaurish/rails.git #my forked repo $ git rebase -i 785a2e5 #commit hash of my commit using which PR was opened $ git checkout patch-3 #branch name I had to send my commits under to be shown in that PR $ git commit -am "Changes done as per feedback" $ git push origin patch

github: Adding commits to existing pull request

十年热恋 提交于 2020-01-30 14:08:09
问题 I opened a pull request to rails repo on github by using Fork & Edit this file file button. Now, After getting feedback on my PR, I wanted to add some more commits. so here is what I ended by doing $ git clone git@github.com:gaurish/rails.git #my forked repo $ git rebase -i 785a2e5 #commit hash of my commit using which PR was opened $ git checkout patch-3 #branch name I had to send my commits under to be shown in that PR $ git commit -am "Changes done as per feedback" $ git push origin patch

github: Adding commits to existing pull request

落花浮王杯 提交于 2020-01-30 14:06:45
问题 I opened a pull request to rails repo on github by using Fork & Edit this file file button. Now, After getting feedback on my PR, I wanted to add some more commits. so here is what I ended by doing $ git clone git@github.com:gaurish/rails.git #my forked repo $ git rebase -i 785a2e5 #commit hash of my commit using which PR was opened $ git checkout patch-3 #branch name I had to send my commits under to be shown in that PR $ git commit -am "Changes done as per feedback" $ git push origin patch