<?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: Sebastian Camilo Marquez</title>
    <description>The latest articles on DEV Community by Sebastian Camilo Marquez (@sebascmb).</description>
    <link>https://dev.to/sebascmb</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%2F1168005%2Fbd46c4db-c58f-439f-b39c-d7ef241b6bf0.png</url>
      <title>DEV Community: Sebastian Camilo Marquez</title>
      <link>https://dev.to/sebascmb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sebascmb"/>
    <language>en</language>
    <item>
      <title>Git aliases for better efficiency and convenience</title>
      <dc:creator>Sebastian Camilo Marquez</dc:creator>
      <pubDate>Wed, 27 Sep 2023 17:43:59 +0000</pubDate>
      <link>https://dev.to/sebascmb/git-aliases-for-better-efficiency-and-convenience-340l</link>
      <guid>https://dev.to/sebascmb/git-aliases-for-better-efficiency-and-convenience-340l</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[alias]
    # one-line log
    l = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short

    a = add
    ap = add -p
    c = commit --verbose
    ca = commit -a --verbose
    cm = commit -m
    cam = commit -a -m
    m = commit --amend --verbose

    d = diff
    ds = diff --stat
    dc = diff --cached

    s = status -s
    co = checkout
    cob = checkout -b

# list branches sorted by last modified
    b = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'"

    # list aliases
    la = "!git config -l | grep alias | cut -c 7-"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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