How to add author name to a custom git alias?










1














I have configured custom git alias that I use very frequently to see the complete graph and commit summary.



[alias]
graph = log --oneline --all --decorate --graph


One thing I would like to add to this alias is the author name. I am trying to add it using the following format option configuration



git log --oneline --all --decorate --graph --format=format:"%h%x09%d%x09%an%x09%s"


This command seems to work but I do not get the nice color coding for commit hash and branch names. Can anyone please guide me as to how can I retain the color highlight for branch names and commit hashes?










share|improve this question




























    1














    I have configured custom git alias that I use very frequently to see the complete graph and commit summary.



    [alias]
    graph = log --oneline --all --decorate --graph


    One thing I would like to add to this alias is the author name. I am trying to add it using the following format option configuration



    git log --oneline --all --decorate --graph --format=format:"%h%x09%d%x09%an%x09%s"


    This command seems to work but I do not get the nice color coding for commit hash and branch names. Can anyone please guide me as to how can I retain the color highlight for branch names and commit hashes?










    share|improve this question


























      1












      1








      1







      I have configured custom git alias that I use very frequently to see the complete graph and commit summary.



      [alias]
      graph = log --oneline --all --decorate --graph


      One thing I would like to add to this alias is the author name. I am trying to add it using the following format option configuration



      git log --oneline --all --decorate --graph --format=format:"%h%x09%d%x09%an%x09%s"


      This command seems to work but I do not get the nice color coding for commit hash and branch names. Can anyone please guide me as to how can I retain the color highlight for branch names and commit hashes?










      share|improve this question















      I have configured custom git alias that I use very frequently to see the complete graph and commit summary.



      [alias]
      graph = log --oneline --all --decorate --graph


      One thing I would like to add to this alias is the author name. I am trying to add it using the following format option configuration



      git log --oneline --all --decorate --graph --format=format:"%h%x09%d%x09%an%x09%s"


      This command seems to work but I do not get the nice color coding for commit hash and branch names. Can anyone please guide me as to how can I retain the color highlight for branch names and commit hashes?







      git git-alias






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 11 at 17:19









      jubobs

      32.7k17100124




      32.7k17100124










      asked Nov 11 at 16:47









      Afraz Ali

      1,12521528




      1,12521528






















          1 Answer
          1






          active

          oldest

          votes


















          2














          Just add the color code %C(auto) in front of your format string :



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"


          However, the author name is not colored by default, so you'll need a specific color code in front of it, like



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"





          share|improve this answer






















          • Using --format supercedes --oneline so better just delete that option.
            – A.H.
            Nov 11 at 20:01










          • @A.H. Fair enough, shorter and clearer. Edited.
            – RomainValeri
            Nov 11 at 22:56










          • Perfect!! Thank you so much!
            – Afraz Ali
            Nov 15 at 11:49










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250943%2fhow-to-add-author-name-to-a-custom-git-alias%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          Just add the color code %C(auto) in front of your format string :



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"


          However, the author name is not colored by default, so you'll need a specific color code in front of it, like



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"





          share|improve this answer






















          • Using --format supercedes --oneline so better just delete that option.
            – A.H.
            Nov 11 at 20:01










          • @A.H. Fair enough, shorter and clearer. Edited.
            – RomainValeri
            Nov 11 at 22:56










          • Perfect!! Thank you so much!
            – Afraz Ali
            Nov 15 at 11:49















          2














          Just add the color code %C(auto) in front of your format string :



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"


          However, the author name is not colored by default, so you'll need a specific color code in front of it, like



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"





          share|improve this answer






















          • Using --format supercedes --oneline so better just delete that option.
            – A.H.
            Nov 11 at 20:01










          • @A.H. Fair enough, shorter and clearer. Edited.
            – RomainValeri
            Nov 11 at 22:56










          • Perfect!! Thank you so much!
            – Afraz Ali
            Nov 15 at 11:49













          2












          2








          2






          Just add the color code %C(auto) in front of your format string :



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"


          However, the author name is not colored by default, so you'll need a specific color code in front of it, like



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"





          share|improve this answer














          Just add the color code %C(auto) in front of your format string :



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"


          However, the author name is not colored by default, so you'll need a specific color code in front of it, like



          git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 11 at 22:56

























          answered Nov 11 at 17:09









          RomainValeri

          1,51811224




          1,51811224











          • Using --format supercedes --oneline so better just delete that option.
            – A.H.
            Nov 11 at 20:01










          • @A.H. Fair enough, shorter and clearer. Edited.
            – RomainValeri
            Nov 11 at 22:56










          • Perfect!! Thank you so much!
            – Afraz Ali
            Nov 15 at 11:49
















          • Using --format supercedes --oneline so better just delete that option.
            – A.H.
            Nov 11 at 20:01










          • @A.H. Fair enough, shorter and clearer. Edited.
            – RomainValeri
            Nov 11 at 22:56










          • Perfect!! Thank you so much!
            – Afraz Ali
            Nov 15 at 11:49















          Using --format supercedes --oneline so better just delete that option.
          – A.H.
          Nov 11 at 20:01




          Using --format supercedes --oneline so better just delete that option.
          – A.H.
          Nov 11 at 20:01












          @A.H. Fair enough, shorter and clearer. Edited.
          – RomainValeri
          Nov 11 at 22:56




          @A.H. Fair enough, shorter and clearer. Edited.
          – RomainValeri
          Nov 11 at 22:56












          Perfect!! Thank you so much!
          – Afraz Ali
          Nov 15 at 11:49




          Perfect!! Thank you so much!
          – Afraz Ali
          Nov 15 at 11:49

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250943%2fhow-to-add-author-name-to-a-custom-git-alias%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

          Syphilis

          Darth Vader #20