<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://developerwiki.proventusnova.com/index.php?action=history&amp;feed=atom&amp;title=Git_workflow</id>
	<title>Git workflow - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://developerwiki.proventusnova.com/index.php?action=history&amp;feed=atom&amp;title=Git_workflow"/>
	<link rel="alternate" type="text/html" href="https://developerwiki.proventusnova.com/index.php?title=Git_workflow&amp;action=history"/>
	<updated>2026-04-18T05:00:38Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://developerwiki.proventusnova.com/index.php?title=Git_workflow&amp;diff=207&amp;oldid=prev</id>
		<title>Admin: Create git workflow page</title>
		<link rel="alternate" type="text/html" href="https://developerwiki.proventusnova.com/index.php?title=Git_workflow&amp;diff=207&amp;oldid=prev"/>
		<updated>2025-06-16T05:01:18Z</updated>

		<summary type="html">&lt;p&gt;Create git workflow page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Git workflow ==&lt;br /&gt;
&lt;br /&gt;
This section shows the standard Git workflow when merging feature branches into the &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; branch. These steps ensure a clean commit history, reduce merge conflicts, and promote a collaborative development process.&lt;br /&gt;
&lt;br /&gt;
=== Steps for merging branches into develop ===&lt;br /&gt;
&lt;br /&gt;
1. Checkout the develop branch:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git checkout develop&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
2. Pull the latest changes:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git pull&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
3. Checkout the feature branch:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git checkout -b feature/branch-name&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
4. Rebase the feature branch onto develop:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git rebase develop&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
5. Switch back to develop:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git checkout develop&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
6. Merge the feature branch (no fast-forward):&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git merge --no-ff feature/branch-name&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Footer}}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>