<?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>notes &#8211; Selman Tunc</title>
	<atom:link href="https://selmantunc.com.tr/tag/notes/feed/" rel="self" type="application/rss+xml" />
	<link>https://selmantunc.com.tr</link>
	<description></description>
	<lastBuildDate>Thu, 03 Jul 2025 05:20:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://selmantunc.com.tr/wp-content/uploads/2023/07/cropped-tumblr_inline_oglumuMbgO1tyldvk_540-150x150-1-32x32.jpg</url>
	<title>notes &#8211; Selman Tunc</title>
	<link>https://selmantunc.com.tr</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Git Notes</title>
		<link>https://selmantunc.com.tr/article/git-notes/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 15 Aug 2020 21:54:04 +0000</pubDate>
				<category><![CDATA[article]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[bitbucket]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[gitlab]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[notes git]]></category>
		<category><![CDATA[version]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2020/08/15/git-notes/</guid>

					<description><![CDATA[My Favorites Git Notes —-Quick Git init —— echo “# rtrt” &#62;&#62; README.md git init git add README.md git commit -m “first commit” git remote add origin git@github.com:stnc/react-native-for-wordpress.git git push&#8230;]]></description>
										<content:encoded><![CDATA[<p><b>
My Favorites Git Notes
</b></p>
<figure class="tmblr-full" data-orig-width="1268" data-orig-height="756"><figure id="attachment_mmd_2171" class="wp-block-image "><img decoding="async" width="1268" height="322" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/352a1df67df8368b18cd73f7ccba257f7fe68c50.png" class="attachment-full size-full" alt="image" loading="lazy" /></figure></figure>
<h2><b>—-Quick Git init ——</b></h2>
<p>echo “# rtrt” &gt;&gt; README.md</p>
<p>git init</p>
<p>git add README.md</p>
<p>git commit -m “first commit”</p>
<p>git remote add origin git@github.com:stnc/react-native-for-wordpress.git</p>
<p>git push -u origin master</p>
<p>&nbsp;</p>
<h2><b>CREATE NEW BRACH</b></h2>
<p>Create a new branch:
<b>git checkout -b feature/quiz</b></p>
<p>Edit, add and commit your files.</p>
<p>Push your branch to the remote repository:
<b>git push -u origin feature/quiz</b></p>
<h2><b>BRANCH DELETE </b></h2>
<p>For local
<b>git branch -d feature/quiz
</b></p>
<blockquote>To delete a remote branch, we do not use the “git branch” command &#8211; but instead “git push” with the “–delete” flag:</blockquote>
<p>For Remote</p>
<p><b>git push origin &#8211; -delete public  </b></p>
<h2><b>TAG CREATED</b></h2>
<p>The syntax to create git tags is simply:</p>
<p>Create</p>
<p><b>git tag 1.0</b></p>
<p>git remote push</p>
<p><b>git push origin 1.0</b></p>
<p>or Push up all the tags</p>
<p><b>git push origin –tags</b></p>
<h2><b> TAG DELETE</b></h2>
<p>How to delete a git tag locally and remote</p>
<p><b>Remote</b></p>
<pre><code>git push --delete origin v1.0</code></pre>
<p><b>Local</b></p>
<pre><code>git tag -d v1.0</code></pre>
<h2>DİFF</h2>
<p>git diff master chapter2</p>
<h2><b>MERGE </b></h2>
<p>feature/panel dalına yapılan işlemlerin master‘a da yapılmasını istiyoruz. Bunun için önce dalı nereye merge etmek istiyorsak o dala git checkout ile geçiş yapmamız gerekiyor. git merge komutunu kullanabiliriz.</p>
<p>Yani önce bulunduğun dalda son commiti at</p>
<p>git commit -m “MERGE”</p>
<p>Sonra master dalına git</p>
<p>git checkout master</p>
<p>git branch</p>
<p>git merge feature/panel</p>
<p>Commite gitme</p>
<p><a href="https://medium.com/nafidurmus/git-son-de%C4%9Fi%C5%9Fiklikleri-commiti-geri-alma-%C3%B6rnekli-f9bc1030f8c4"><a href="https://medium.com/nafidurmus/git-son-de%C4%9Fi%C5%9Fiklikleri-commiti-geri-alma-%C3%B6rnekli-f9bc1030f8c4">https://medium.com/nafidurmus/git-son-de%C4%9Fi%C5%9Fiklikleri-commiti-geri-alma-%C3%B6rnekli-f9bc1030f8c4</a></a>
&nbsp;</p>
<p>&nbsp;
<a href="https://github.com/firstcontributions/first-contributions?tab=readme-ov-file"><a href="https://github.com/firstcontributions/first-contributions?tab=readme-ov-file">https://github.com/firstcontributions/first-contributions?tab=readme-ov-file</a></a>
&nbsp;</p>
<p>&nbsp;</p>
<p><a href="https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.tr.md"><a href="https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.tr.md">https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.tr.md</a></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
