<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Satton</title>
    <description>The latest articles on DEV Community by Satton (@satton).</description>
    <link>https://dev.to/satton</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F875957%2F576ee22c-a23f-4f19-a9b9-a8b20a1cb7a8.jpg</url>
      <title>DEV Community: Satton</title>
      <link>https://dev.to/satton</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/satton"/>
    <language>en</language>
    <item>
      <title>How to set Alias for Git command?</title>
      <dc:creator>Satton</dc:creator>
      <pubDate>Sat, 25 Jun 2022 03:13:13 +0000</pubDate>
      <link>https://dev.to/satton/how-to-set-alias-for-git-command-4o84</link>
      <guid>https://dev.to/satton/how-to-set-alias-for-git-command-4o84</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Describes how to set an alias for a Git command.&lt;br&gt;
It all started when I happened to be using Git in my work and was curious about alias settings.&lt;/p&gt;
&lt;h2&gt;
  
  
  About Alias
&lt;/h2&gt;

&lt;p&gt;This setting is used to omit commands used in Git.&lt;/p&gt;

&lt;p&gt;Example&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Before Abbreviation
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git status
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;ul&gt;
&lt;li&gt;After Abbreviation
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git s
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  Setup Procedure
&lt;/h2&gt;
&lt;h3&gt;
  
  
  Commands to set Alias settings
&lt;/h3&gt;

&lt;p&gt;Perform Alias configuration for the following commands&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git log &lt;span class="nt"&gt;--graph&lt;/span&gt; &lt;span class="nt"&gt;--all&lt;/span&gt; &lt;span class="nt"&gt;--color&lt;/span&gt; &lt;span class="nt"&gt;--pretty&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;'%x09%h %s %Cred%d%Creset %C(green)- %ad%Creset c:%cn:%ce a:%an:%ae'&lt;/span&gt; &lt;span class="nt"&gt;--date&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;format:&lt;span class="s1"&gt;'%Y/%m/%d %H:%M:%S%z'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This command makes the git log easier to read.&lt;br&gt;
Examples of use are as follows.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;% git log &lt;span class="nt"&gt;--graph&lt;/span&gt; &lt;span class="nt"&gt;--all&lt;/span&gt; &lt;span class="nt"&gt;--color&lt;/span&gt; &lt;span class="nt"&gt;--pretty&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"%x09%h %s %Cred%d%Creset %C(green)- %ad%Creset c:%cn:%ce a:%an:%ae"&lt;/span&gt; &lt;span class="nt"&gt;--date&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;format:&lt;span class="s2"&gt;"%Y/%m/%d %H:%M:%S%z"&lt;/span&gt;
&lt;span class="k"&gt;*&lt;/span&gt;       4c001c1 Update READMD.md  &lt;span class="o"&gt;(&lt;/span&gt;HEAD -&amp;gt; work, origin/work&lt;span class="o"&gt;)&lt;/span&gt; - 2022/06/19 15:28:05+0900 c:masuwa:xxxxxxxxxxx@gmail.com a:masuwa:xxxxxxxxxxx@gmail.com 
&lt;span class="k"&gt;*&lt;/span&gt;       20ac8ba Initial commit  &lt;span class="o"&gt;(&lt;/span&gt;origin/main, origin/HEAD, main&lt;span class="o"&gt;)&lt;/span&gt; - 2022/06/19 13:15:40+0900 c:GitHub:noreply@github.com a:masuwa9028:105219153+masuwa9028@users.noreply.github.com
%
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Alias Setting
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Setting File
&lt;/h4&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Range to be reflected&lt;/th&gt;
&lt;th&gt;Configuration file to be edited&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Entire system&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/etc/gitconfig&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;User&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;~/.gitconfig&lt;/code&gt; or &lt;code&gt;~/.config/git/config&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Repository&lt;/td&gt;
&lt;td&gt;Repository root directory/.git/config&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;※This time, modify &lt;code&gt;~/.gitconfig&lt;/code&gt;.&lt;/p&gt;

&lt;h4&gt;
  
  
  Setting
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Modify &lt;code&gt;~/.gitconfig&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Add the following to &lt;code&gt;~/.gitconfig&lt;/code&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[alias]
  tree = log --graph --all --color --pretty='%x09%h %s %Cred%d%Creset %C(green)- %ad%Creset c:%cn:%ce a:%an:%ae' --date=format:'%Y/%m/%d %H:%M:%S%z'
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Check if the command is available.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Verify that the git tree command is working.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;% git tree
*       4c001c1 Update READMD.md  (HEAD -&amp;gt; work, origin/work) - 2022/06/19 15:28:05+0900 c:masuwa:xxxxxxxxxxx@gmail.com a:masuwa:xxxxxxxxxxx@gmail.com 
*       20ac8ba Initial commit  (origin/main, origin/HEAD, main) - 2022/06/19 13:15:40+0900 c:GitHub:noreply@github.com a:masuwa9028:105219153+masuwa9028@users.noreply.github.com
%
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Reference
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://qiita.com/chihiro/items/04813c707cc665de67c5"&gt;【git】aliasの設定方法&lt;/a&gt;&lt;br&gt;
&lt;a href="https://git-scm.com/book/ja/v2/Git-%E3%81%AE%E5%9F%BA%E6%9C%AC-Git-%E3%82%A8%E3%82%A4%E3%83%AA%E3%82%A2%E3%82%B9"&gt;2.7 Git の基本 - Git エイリアス&lt;/a&gt;&lt;br&gt;
&lt;a href="https://qiita.com/TakuTaku04/items/b764fc8ed5db642c7796"&gt;ダブルクォートを含むコマンドをそのままaliasにすると失敗しがち&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Summarize Scrum terminology</title>
      <dc:creator>Satton</dc:creator>
      <pubDate>Sat, 18 Jun 2022 14:48:36 +0000</pubDate>
      <link>https://dev.to/satton/summarize-scrum-terminology-2jnk</link>
      <guid>https://dev.to/satton/summarize-scrum-terminology-2jnk</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;We use introduced Scrum in our business.&lt;br&gt;
But I'm new to working in Scrum format.&lt;br&gt;
Therefore, this time I will write about the terms used in Scrum.&lt;/p&gt;

&lt;p&gt;※It will be a rough content.&lt;br&gt;
Also,not all of terminology are covered.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Scrum?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--CjbUJBKe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/whga9kkhsnokk3q9pxjv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--CjbUJBKe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/whga9kkhsnokk3q9pxjv.png" alt="Scrum diagram" width="880" height="350"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Scrum is a lightweight framework for people, teams, and organizations to create value through adaptive solutions to complex problems.&lt;/p&gt;

&lt;p&gt;Features include&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Increase the speed of service/product development.&lt;/li&gt;
&lt;li&gt;Flexibility to withstand change.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Scrum terminology
&lt;/h2&gt;

&lt;p&gt;Here is a broad introduction to Scrum terminology.&lt;/p&gt;

&lt;h3&gt;
  
  
  Scrum Team
&lt;/h3&gt;

&lt;p&gt;Scrum team are people who work on sprints.&lt;/p&gt;

&lt;p&gt;The Scrum team consists of:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;Explanation&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Product Owner&lt;/td&gt;
&lt;td&gt;Responsible role in determining product direction.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Scrum Master&lt;/td&gt;
&lt;td&gt;The role of managing the process of Scrum development.&lt;br&gt;Coordinating role in resolving issues and explaining rules in development.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Development Team&lt;/td&gt;
&lt;td&gt;Members who actually design and build.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Sprint
&lt;/h2&gt;

&lt;p&gt;A short, delimited period for the Scrum team to complete a certain amount of work.&lt;/p&gt;

&lt;p&gt;The standard sprint period is one week to one month.&lt;/p&gt;

&lt;h3&gt;
  
  
  Sprint Planning
&lt;/h3&gt;

&lt;p&gt;An event to discuss sprint goals and plan the work needed to reach those goals.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sprint Goal&lt;/strong&gt; is a goal set in a sprint.&lt;/p&gt;

&lt;h3&gt;
  
  
  Daily Scrum
&lt;/h3&gt;

&lt;p&gt;Daily Scrum is an event to check if a sprint goal can be achieved.&lt;br&gt;
It will be held every day in 15 minutes, such as in the morning.&lt;/p&gt;

&lt;h3&gt;
  
  
  Sprint Review
&lt;/h3&gt;

&lt;p&gt;Sprint review is one of the meetings held at the end of the sprint.&lt;br&gt;
It will be an event to check the results of the sprint and get feedback.&lt;/p&gt;

&lt;h3&gt;
  
  
  Sprint Retrospective
&lt;/h3&gt;

&lt;p&gt;Sprint Retrospective is one of the meetings held at the end of the sprint.&lt;br&gt;
It is like looking back on a sprint and considering the next improvement.&lt;/p&gt;

&lt;h2&gt;
  
  
  lastly
&lt;/h2&gt;

&lt;p&gt;I wrote an article in English for the first time&lt;br&gt;
I will continue to write articles to familiarize myself with the English language.&lt;/p&gt;

&lt;h2&gt;
  
  
  Reference information
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.ogis-ri.co.jp/column/agile/agilescrum01.html"&gt;About Scrum&lt;/a&gt;&lt;br&gt;
&lt;a href="https://asana.com/ja/resources/what-is-scrum"&gt;What is Scrum?&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
