<?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>Serov.eu &#187; git</title>
	<atom:link href="https://serov.eu/?feed=rss2&#038;tag=git" rel="self" type="application/rss+xml" />
	<link>https://serov.eu</link>
	<description>Блог программиста</description>
	<lastBuildDate>Thu, 30 Apr 2026 12:31:53 +0000</lastBuildDate>
	<language>ru-RU</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.15</generator>
	<item>
		<title>Conventional Commits</title>
		<link>https://serov.eu/?p=905</link>
		<comments>https://serov.eu/?p=905#comments</comments>
		<pubDate>Fri, 11 Aug 2023 09:54:58 +0000</pubDate>
		<dc:creator><![CDATA[Evgen]]></dc:creator>
				<category><![CDATA[Программирование]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">https://serov.eu/?p=905</guid>
		<description><![CDATA[https://www.conventionalcommits.org/en/v1.0.0/#summary &#160; &#160; The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of. This convention dovetails with SemVer, by describing the features, fixes, and breaking changes made in commit &#8230; <a href="https://serov.eu/?p=905" class="more-link">Читать далее <span class="screen-reader-text">Conventional Commits</span></a>]]></description>
				<content:encoded><![CDATA[<p><a title="https://www.conventionalcommits.org/en/v1.0.0/#summary" href="https://www.conventionalcommits.org/en/v1.0.0/#summary" target="_blank">https://www.conventionalcommits.org/en/v1.0.0/#summary</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of. This convention dovetails with <a href="http://semver.org/">SemVer</a>, by describing the features, fixes, and breaking changes made in commit messages</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://serov.eu/?feed=rss2&#038;p=905</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steps to clear out the history of a git/github repository</title>
		<link>https://serov.eu/?p=355</link>
		<comments>https://serov.eu/?p=355#comments</comments>
		<pubDate>Tue, 20 Nov 2018 10:20:45 +0000</pubDate>
		<dc:creator><![CDATA[Evgen]]></dc:creator>
				<category><![CDATA[Программирование]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">https://serov.eu/?p=355</guid>
		<description><![CDATA[-- Remove the history from rm -rf .git -- recreate the repos from the current content only git init git add . git commit -m "Initial commit" -- push to the github remote repos ensuring you overwrite history git remote add origin git@github.com:/.git git push -u --force origin master]]></description>
				<content:encoded><![CDATA[<pre>
-- Remove the history from 
rm -rf .git

-- recreate the repos from the current content only
git init
git add .
git commit -m "Initial commit"

-- push to the github remote repos ensuring you overwrite history
git remote add origin git@github.com:<YOUR ACCOUNT>/<YOUR REPOS>.git
git push -u --force origin master
</pre>
]]></content:encoded>
			<wfw:commentRss>https://serov.eu/?feed=rss2&#038;p=355</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>warning: CRLF will be replaced by LF in</title>
		<link>https://serov.eu/?p=352</link>
		<comments>https://serov.eu/?p=352#comments</comments>
		<pubDate>Mon, 19 Nov 2018 11:51:41 +0000</pubDate>
		<dc:creator><![CDATA[Evgen]]></dc:creator>
				<category><![CDATA[Программирование]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">https://serov.eu/?p=352</guid>
		<description><![CDATA[error: warning: CRLF will be replaced by LF in style.scss. The file will have its original line endings in your working directory. solution: git config core.autocrlf true]]></description>
				<content:encoded><![CDATA[<pre>
error:
warning: CRLF will be replaced by LF in style.scss.
The file will have its original line endings in your working directory.

solution:
git config core.autocrlf true

</pre>
]]></content:encoded>
			<wfw:commentRss>https://serov.eu/?feed=rss2&#038;p=352</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git</title>
		<link>https://serov.eu/?p=184</link>
		<comments>https://serov.eu/?p=184#comments</comments>
		<pubDate>Sat, 17 Jun 2017 18:33:01 +0000</pubDate>
		<dc:creator><![CDATA[Evgen]]></dc:creator>
				<category><![CDATA[Программирование]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[GitLab]]></category>

		<guid isPermaLink="false">https://serov.eu/?p=184</guid>
		<description><![CDATA[После git remote rm origin git remote add origin git@gitlab.xxxx.ru:xxxx/xxxx.ru.git Делаем и не знаем проблем git config branch.master.remote origin git config branch.master.merge refs/heads/master]]></description>
				<content:encoded><![CDATA[<p>После<br />
<code><br />
git remote rm origin<br />
git remote add origin git@gitlab.xxxx.ru:xxxx/xxxx.ru.git<br />
</code></p>
<p>Делаем и не знаем проблем</p>
<p><code><br />
git config branch.master.remote origin<br />
git config branch.master.merge refs/heads/master<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>https://serov.eu/?feed=rss2&#038;p=184</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
