<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Git on RawCull</title><link>https://techrawcull.netlify.app/tags/git/</link><description>Recent content in Git on RawCull</description><generator>Hugo</generator><language>en</language><lastBuildDate>Thu, 30 Jul 2026 07:59:27 +0200</lastBuildDate><atom:link href="https://techrawcull.netlify.app/tags/git/index.xml" rel="self" type="application/rss+xml"/><item><title>Repository Git Workflow</title><link>https://techrawcull.netlify.app/docs/pushpull/</link><pubDate>Sun, 19 Apr 2026 00:00:00 +0000</pubDate><guid>https://techrawcull.netlify.app/docs/pushpull/</guid><description>&lt;h1 id="repository-git-workflow-linear-history"&gt;Repository Git Workflow: Linear History&lt;a class="td-heading-self-link" href="#repository-git-workflow-linear-history" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;This page documents the preferred repository workflow for RawCull documentation changes: branch-based development, signed commits when configured, rebasing onto &lt;code&gt;main&lt;/code&gt;, and fast-forward integration without merge commits.&lt;/p&gt;
&lt;h2 id="create-a-branch"&gt;Create a Branch&lt;a class="td-heading-self-link" href="#create-a-branch" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;git checkout -b &amp;lt;new-branch&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;git push --set-upstream origin &amp;lt;new-branch&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="daily-workflow"&gt;Daily Workflow&lt;a class="td-heading-self-link" href="#daily-workflow" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;You always work on a dedicated branch. Commit often as you make progress.&lt;/p&gt;
&lt;h3 id="stage-changes"&gt;Stage changes&lt;a class="td-heading-self-link" href="#stage-changes" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;git add .
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="commit"&gt;Commit&lt;a class="td-heading-self-link" href="#commit" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;If you use the Claude CLI, it can generate a &lt;a href="https://www.conventionalcommits.org/"&gt;Conventional Commits&lt;/a&gt; message from the staged diff:&lt;/p&gt;</description></item></channel></rss>