<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Doaa Mutar &#8211; CS@Worcester</title>
	<atom:link href="https://cs.worcester.edu/author/doaa-mutar/feed/" rel="self" type="application/rss+xml" />
	<link>https://cs.worcester.edu</link>
	<description>Worcester State University Computer Science Department</description>
	<lastBuildDate>Mon, 06 Oct 2025 03:23:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
<site xmlns="com-wordpress:feed-additions:1">236835116</site>	<item>
		<title>Why My Homework on Forking and Pull Requests is Actually Career Prep</title>
		<link>https://doaatime.wordpress.com/2025/10/05/why-my-homework-on-forking-and-pull-requests-is-actually-career-prep/</link>
		
		<dc:creator><![CDATA[Doaa Mutar]]></dc:creator>
		<pubDate>Mon, 06 Oct 2025 03:23:16 +0000</pubDate>
				<category><![CDATA[CS-348]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Quarter1]]></category>
		<guid isPermaLink="false">http://doaatime.wordpress.com/?p=24</guid>

					<description><![CDATA[For the past few weeks in my Software Process Management class, we’ve been deep in the Runestone GitKit modules. At first, it felt like we were just going through the motions: fork a repo, create a branch, make a commit, open a pull request. It was a bit mechanical. But once we got to the […]]]></description>
										<content:encoded><![CDATA[<figure class="wp-block-image size-large"><img data-recalc-dims="1" fetchpriority="high" decoding="async" width="625" height="215" data-attachment-id="26" data-permalink="https://doaatime.wordpress.com/2025/10/05/why-my-homework-on-forking-and-pull-requests-is-actually-career-prep/github-flow/" data-orig-file="https://doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp" data-orig-size="1024,353" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="GitHub-Flow" data-image-description="" data-image-caption="" data-medium-file="https://doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp?w=300" data-large-file="https://doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp?w=1024" src="https://i0.wp.com/doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp?resize=625%2C215&#038;ssl=1" alt="" class="wp-image-26" srcset="https://doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp 1024w, https://doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp?w=150 150w, https://doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp?w=300 300w, https://doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
<p>For the past few weeks in my Software Process Management class, we&#8217;ve been deep in the Runestone GitKit modules. At first, it felt like we were just going through the motions: fork a repo, create a branch, make a commit, open a pull request. It was a bit mechanical. But once we got to the later modules on syncing with an upstream repository and dealing with merge conflicts, the bigger picture started to click. I realized I was learning a real-world workflow, not just homework exercises. To get a better understanding of why this process is so important, I spent time on the Atlassian &#8220;Source Code Management&#8221; tutorials. I wanted to see how the steps from our class connected to the way professional developers actually work.</p>
<p>The Atlassian resource was the perfect companion to our GitKit labs. It framed everything we were doing in terms of a &#8220;Forking Workflow,&#8221; which is massively used in open-source projects and many companies. It explained that forking isn&#8217;t just a step; it&#8217;s a collaboration model. It gives you your own server-side copy (your &#8220;origin&#8221;) to experiment freely without threatening the stability of the main project (the &#8220;upstream&#8221;). This directly clarified the purpose of the two remote repositories we set up in GitKit. The tutorials also gave a crystal-clear explanation of pull requests, describing them not just as a way to merge code, but as a formal mechanism for discussion, code review, and ensuring quality before changes are integrated.</p>
<p>This connection between class and the professional world was a huge lightbulb moment for me. In Module 3, we learned the mechanics of&nbsp;<code>git branch</code>,&nbsp;<code>git push origin feature-branch</code>, and creating a PR. Atlassian explained the&nbsp;<em>why</em>: this process isolates your work, keeps the main branch stable, and makes every change transparent and reviewable. The steps we practiced for syncing with upstream in Module 4—<code>git fetch upstream</code>&nbsp;and merging changes—are exactly how real developers keep their feature branches up-to-date and avoid nasty merge conflicts. Even the&nbsp;<code>.gitignore</code>&nbsp;file, which we learned about, is a professional standard for keeping junk files out of the shared codebase.</p>
<p>Understanding this workflow is no longer just about passing the class; it feels like essential career prep. When I look at internship job descriptions, &#8220;experience with Git and GitHub&#8221; is a given. Now I know that means more than just making commits. It means understanding how to collaborate using forks, branches, and pull requests. It means knowing how to resolve a merge conflict gracefully instead of panicking. The hands-on practice from GitKit, combined with the conceptual framework from the Atlassian tutorials, has given me the confidence to say I understand a standard professional development workflow. I&#8217;m not just memorizing commands for an exam; I&#8217;m building a foundational skill I&#8217;ll use every day in my future career.</p>
<p><strong>Resource Link:</strong>&nbsp;<a href="https://www.atlassian.com/git/tutorials/source-code-management"  rel="noreferrer noopener">Atlassian Git Tutorials &#8211; Source Code Management</a></p>

<p class="syndicated-attribution"><em>From the blog <a href="https://doaatime.wordpress.com">CS@Worcester – DoaaTime</a> by <a href="https://cs.worcester.edu/author/0/" title="Read other posts by Doaa Mutar">Doaa Mutar</a></em> and used with permission of the author. All other rights reserved by the author.</p>]]></content:encoded>
					
		
		<enclosure url="https://0.gravatar.com/avatar/33e10de82c1a913328ca3ecc1d4613ae00c2fae5840617a858f0a645d50d3215?s=96&#038;d=identicon&#038;r=G" length="0" type="" />
<enclosure url="https://doaatime.wordpress.com/wp-content/uploads/2025/10/github-flow.webp?w=1024" length="0" type="" />

		<post-id xmlns="com-wordpress:feed-additions:1">41644</post-id>	</item>
		<item>
		<title>First Blog Post!</title>
		<link>https://doaatime.wordpress.com/2025/09/15/cs-wsu/</link>
		
		<dc:creator><![CDATA[Doaa Mutar]]></dc:creator>
		<pubDate>Tue, 16 Sep 2025 03:50:08 +0000</pubDate>
				<category><![CDATA[CS-348]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<guid isPermaLink="false">http://doaatime.wordpress.com/?p=9</guid>

					<description><![CDATA[This is my Blog for my Software Process Management course, and I’m really excited to learn more and grow through my writing. As I embark on this educational journey, I aim to explore various methodologies and practices within software development, delving into topics such as version control tools, Coding Standards, and Software Maintenance. By sharing […]]]></description>
										<content:encoded><![CDATA[<p class="has-text-align-left has-theme-5-color has-theme-1-background-color has-text-color has-background has-link-color wp-elements-35b22e63d80827d1028130e98b549b06" style="border-radius:0px;margin-top:0;margin-bottom:0"><strong>This is my Blog for my Software Process Management course, and I&#8217;m really excited to learn more and grow through my writing. As I embark on this educational journey, I aim to explore various methodologies and practices within software development, delving into topics such as version control tools, Coding Standards, and Software Maintenance. By sharing my insights, reflections, and project experiences, I hope to not only reinforce my understanding but also connect with others who share a passion for improving software processes. Through this platform, I aim to foster discussions that encourage collaboration, innovative thinking, and a deeper appreciation for the intricacies of software management.</strong></p>
</p>
<p class="has-theme-5-color has-text-color has-link-color wp-elements-78bc743fa0a13d20250f1eb9a7940a17">
<p class="has-large-font-size">
<p class="has-theme-1-color has-text-color has-link-color wp-elements-0e39f6cf57f1bc2676eb998454ea6943">

<p class="syndicated-attribution"><em>From the blog <a href="https://doaatime.wordpress.com">CS@Worcester – DoaaTime</a> by <a href="https://cs.worcester.edu/author/0/" title="Read other posts by Doaa Mutar">Doaa Mutar</a></em> and used with permission of the author. All other rights reserved by the author.</p>]]></content:encoded>
					
		
		<enclosure url="https://doaatime.wordpress.com/wp-content/uploads/2025/09/61duyp2kjrl._uf8941000_ql80_.jpg" length="0" type="" />
<enclosure url="https://0.gravatar.com/avatar/33e10de82c1a913328ca3ecc1d4613ae00c2fae5840617a858f0a645d50d3215?s=96&#038;d=identicon&#038;r=G" length="0" type="" />

		<post-id xmlns="com-wordpress:feed-additions:1">39824</post-id>	</item>
	</channel>
</rss>
