Update bitcoin-qt.desktop #8908

pull smatthewenglish wants to merge 1 commits into bitcoin:master from smatthewenglish:patch-4 changing 1 files +3 −2
  1. smatthewenglish commented at 9:37 AM on October 11, 2016: contributor

    I'd like to get the hang of how to make pull requests and contribute. there was no German there, but Turkish and French- many Bitcoiners are German- so- maybe it would be useful

  2. MarcoFalke commented at 9:50 AM on October 11, 2016: member

    This should probably be changed to just "Bitcoin Core GUI" or "Bitcoin Core".

  3. in contrib/debian/bitcoin-qt.desktop:None in 83518c4117 outdated
       2 | @@ -3,6 +3,7 @@ Encoding=UTF-8
       3 |  Name=Bitcoin
       4 |  Comment=Bitcoin P2P Cryptocurrency
    


    MarcoFalke commented at 10:28 AM on October 11, 2016:

    I checked some programs and the default seems to be imperative style, so maybe change to:

    Connect to the Bitcoin P2P Network

  4. MarcoFalke changes_requested
  5. laanwj added the label Docs and Output on Oct 11, 2016
  6. smatthewenglish commented at 12:07 PM on October 11, 2016: contributor

    it's there some kind of- particular naming convention for the branch, if it should be merged? I guess I didn't do that correctly in this instance

  7. smatthewenglish commented at 12:47 PM on October 11, 2016: contributor

    I think I've made the change you requested, is it so?

  8. in contrib/debian/bitcoin-qt.desktop:None in f1cb6bf8c0 outdated
       0 | @@ -1,8 +1,9 @@
       1 |  [Desktop Entry]
       2 |  Encoding=UTF-8
       3 |  Name=Bitcoin
       4 | -Comment=Bitcoin P2P Cryptocurrency
       5 | +Comment=Connect to the Bitcoin P2P Network
       6 |  Comment[fr]=Bitcoin, monnaie virtuelle cryptographique pair à pair
       7 | +Comment[de]=Bitcoin, eine virtuelle kryptographische peer-to-peer Währung
    


    MarcoFalke commented at 2:54 PM on October 11, 2016:

    I guess this should match the English one. I.e.

    "Verbinde mit dem Bitcoin peer-to-peer Netzwerk" (oder ähnlich)


    smatthewenglish commented at 3:07 PM on October 11, 2016:

    ok cool, I've made the change.

  9. in contrib/debian/bitcoin-qt.desktop:None in 17d5ed68b0 outdated
       0 | @@ -1,7 +1,8 @@
       1 |  [Desktop Entry]
       2 |  Encoding=UTF-8
       3 |  Name=Bitcoin
    


    MarcoFalke commented at 4:37 PM on October 11, 2016:

    Please change this to "Bitcoin Core".

    Also, Please squash your commits according to https://github.com/bitcoin/bitcoin/blob/master/CONTRIBUTING.md#squashing-commits


    smatthewenglish commented at 7:04 PM on October 12, 2016:

    ok cool, I had planned to do it today but life interveened, I'll do it tomorrow :)

  10. smatthewenglish commented at 1:35 PM on October 17, 2016: contributor

    I think I've made a mistake which is, I made those changes directly in the window of GitHub, and they don't exist on my local repo, seems they're only in this patch here. Is there some way to incorporate those changes to my local repo so I can do the squashing procedure?

  11. laanwj commented at 1:50 PM on October 17, 2016: member

    Is there some way to incorporate those changes to my local repo so I can do the squashing procedure?

    git pull origin patch-4
    

    (where origin is the name that you gave to your github remote)

  12. smatthewenglish commented at 1:52 PM on October 17, 2016: contributor

    so- origin/master? or... I just ran exactly git pull origin patch-4 and it seemed to work

  13. smatthewenglish commented at 1:55 PM on October 17, 2016: contributor

    now I need to issue the command git rebase -i HEAD~n isn't it? do you know how I can figure out what is n?

  14. fanquake commented at 1:57 PM on October 17, 2016: member

    @s-matthew-english n is the number of commits you've made.

  15. smatthewenglish commented at 2:00 PM on October 17, 2016: contributor

    my terminal tells me I'm ahead of origin/master by 5 commits, so then- is it 5? how can I check that?

  16. smatthewenglish commented at 2:47 PM on October 17, 2016: contributor

    hmm, I've been trying to squash it for a while now, did it work?

  17. smatthewenglish commented at 2:56 PM on October 17, 2016: contributor

    I think I squashed them, I followed this tutorial: https://github.com/edx/edx-platform/wiki/How-to-Rebase-a-Pull-Request

  18. achow101 commented at 2:59 PM on October 17, 2016: member

    @s-matthew-english didn't seem to work. Did you force push?

  19. smatthewenglish commented at 2:59 PM on October 17, 2016: contributor

    yeah :/ strange

  20. smatthewenglish commented at 3:00 PM on October 17, 2016: contributor

    do I force push it to upstream/master or origin/master?

  21. achow101 commented at 3:01 PM on October 17, 2016: member

    it depends on which one points to your repo. It's probably origin/master, but you can try both. The worst that will happen is that you will get an error about not being able to push to one of those.

  22. achow101 commented at 3:20 PM on October 17, 2016: member

    Close. Do it for your patch-4 branch. Also, the commit message should be cut down to just one message that describes the changes simply.

  23. smatthewenglish commented at 3:30 PM on October 17, 2016: contributor

    hmm, is there a way to retroactively change to commit mesage? I think I've now done it for patch-4, did it work?

  24. achow101 commented at 3:32 PM on October 17, 2016: member

    Nope. something very wrong happened. I think you pushed your whole master branch.

  25. smatthewenglish commented at 3:34 PM on October 17, 2016: contributor

    :/ shit- is there a way to... back it up to before I did that and then take another crack at it?

  26. achow101 commented at 3:35 PM on October 17, 2016: member

    At this point you could just do it the "hard" way. Reset to Bitcoin master (git reset --hard upstream/master assuming upstream is to bitcoin/bitcoin) then make your final changes, commit, and force push.

  27. smatthewenglish commented at 3:38 PM on October 17, 2016: contributor

    on which branch 'patch-4'?

    On Mon, Oct 17, 2016 at 5:36 PM, Andrew C notifications@github.com wrote:

    At this point you could just do it the "hard" way. Reset to Bitcoin master (git reset --hard upstream/master assuming upstream is to bitcoin/bitcoin) then make your final changes, commit, and force push.

    — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub #8908 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AIonIN8wQ9bs4D6FHdTP5hOONYbQYSyhks5q05YIgaJpZM4KTb1V .

  28. achow101 commented at 3:38 PM on October 17, 2016: member

    yes

  29. smatthewenglish commented at 3:42 PM on October 17, 2016: contributor

    :/ but when I run 'git merge-base patch-4 upstream/master' it says only "noop"

    On Mon, Oct 17, 2016 at 5:39 PM, Andrew C notifications@github.com wrote:

    yes

    — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub #8908 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AIonIPtppENShC7-cH9nGZJAcHc6Zq_8ks5q05a_gaJpZM4KTb1V .

  30. sipa commented at 3:43 PM on October 17, 2016: member

    Maybe this discussion can be held more effectively on IRC?

  31. achow101 commented at 3:44 PM on October 17, 2016: member

    Don't do any merges. Just reset the branch like I told you above. You should end up doing something like this:

    git checkout patch-4
    git reset --hard upstream/master
    
    # Do your changes again
    
    git commit -a
    git push -f origin
    
  32. smatthewenglish force-pushed on Oct 17, 2016
  33. smatthewenglish commented at 3:50 PM on October 17, 2016: contributor

    ok- I think I've just done it- did it work?

    On Mon, Oct 17, 2016 at 5:45 PM, Andrew C notifications@github.com wrote:

    Don't do any merges. Just reset the branch like I told you above. You should end up doing something like this:

    git checkout patch-4 git reset --hard upstream/master

    Do your changes again

    git commit -a git push -f origin

    — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub #8908 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AIonIMek2Y1hGI3b1EB3dr4R5P1g1syfks5q05f_gaJpZM4KTb1V .

  34. achow101 commented at 3:53 PM on October 17, 2016: member

    Almost. Somehow a change to src/crypto/hmac_sha256.cpp slipped in.

    Just remove that change and then use git commit -a --amend to modify the existing commit.

  35. smatthewenglish commented at 3:57 PM on October 17, 2016: contributor

    ok- I think I've done it. is it so?

    On Mon, Oct 17, 2016 at 5:54 PM, Andrew C notifications@github.com wrote:

    Almost. Somehow a change to src/crypto/hmac_sha256.cpp slipped in.

    Just remove that change and then use git commit -a --amend to modify the existing commit.

    — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub #8908 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AIonIAMrSy4XKlQAaz51fLHkQ1-0s4k2ks5q05o_gaJpZM4KTb1V .

  36. smatthewenglish force-pushed on Oct 17, 2016
  37. achow101 commented at 4:00 PM on October 17, 2016: member

    Yes, it is correct now.

  38. MarcoFalke commented at 4:01 PM on October 17, 2016: member

    Please do a last git commit --ammend and make sure to apply the second git commit message rule: http://chris.beams.io/posts/git-commit/#seven-rules

  39. smatthewenglish commented at 4:02 PM on October 17, 2016: contributor

    :D cool- thank you for helping me figure this out

    On Mon, Oct 17, 2016 at 6:01 PM, Andrew C notifications@github.com wrote:

    Yes, it is correct now.

    — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub #8908 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AIonIGIh8mufhLQd6WseIENp0t8MWSVDks5q05vHgaJpZM4KTb1V .

  40. Simple Update to File 'bitcoin-qt.desktop' 164196b7c8
  41. smatthewenglish force-pushed on Oct 17, 2016
  42. smatthewenglish commented at 4:05 PM on October 17, 2016: contributor

    how about that one?

  43. MarcoFalke commented at 6:20 PM on October 17, 2016: member

    utACK 164196b

  44. jonasschnelli added the label GUI on Oct 18, 2016
  45. jonasschnelli commented at 6:25 AM on October 18, 2016: contributor

    utACK 164196b7c8aecb72dd20c8681bb24b81b18aecaa

  46. TheBlueMatt commented at 7:19 PM on October 18, 2016: member

    utACK 164196b7c8aecb72dd20c8681bb24b81b18aecaa

  47. jonasschnelli merged this on Oct 18, 2016
  48. jonasschnelli closed this on Oct 18, 2016

  49. jonasschnelli referenced this in commit df7519cbc1 on Oct 18, 2016
  50. luke-jr referenced this in commit 4a974b2837 on Dec 2, 2016
  51. codablock referenced this in commit 21f7d639da on Sep 19, 2017
  52. codablock referenced this in commit b02e461fae on Jan 12, 2018
  53. andvgal referenced this in commit a5b7289055 on Jan 6, 2019
  54. MarcoFalke locked this on Sep 8, 2021

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2026-04-21 18:15 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me