<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.ulascemh.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.ulascemh.com/feed.php">
        <title>UCH - en:cs:devtools:git</title>
        <description></description>
        <link>https://wiki.ulascemh.com/</link>
        <image rdf:resource="https://wiki.ulascemh.com/lib/exe/fetch.php?media=logo.svg" />
       <dc:date>2026-06-19T01:50:27+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:basics&amp;rev=1775394600&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:cheatsheet&amp;rev=1775393546&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:config&amp;rev=1775394364&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:multipleaccounts&amp;rev=1775392965&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:sidebar&amp;rev=1775394151&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:start&amp;rev=1775391756&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.ulascemh.com/lib/exe/fetch.php?media=logo.svg">
        <title>UCH</title>
        <link>https://wiki.ulascemh.com/</link>
        <url>https://wiki.ulascemh.com/lib/exe/fetch.php?media=logo.svg</url>
    </image>
    <item rdf:about="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:basics&amp;rev=1775394600&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-05T13:10:00+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Git Basics</title>
        <link>https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:basics&amp;rev=1775394600&amp;do=diff</link>
        <description>Git Basics

Migrating the Local Repo to GitHub


git init -b main
git add --all
git commit -m &quot;First commit&quot;
git remote add origin &lt;REMOTE_URL&gt;
git remote -v
git push origin main


Basic Workflow
 Kod  Açıklama  git status  Displays the current status of the project, as well as any files that have been modified or added.</description>
    </item>
    <item rdf:about="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:cheatsheet&amp;rev=1775393546&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-05T12:52:26+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Git Cheat Sheet</title>
        <link>https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:cheatsheet&amp;rev=1775393546&amp;do=diff</link>
        <description>Git Cheat Sheet

1. Getting Started and Configuration (Setup)
 git config --global user.name “Your Name Surname”  Defines the user name for Git. If you don&#039;t use the --global flag, it only changes the user name in the relevant repo.   git config</description>
    </item>
    <item rdf:about="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:config&amp;rev=1775394364&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-05T13:06:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Getting Started and Configuration</title>
        <link>https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:config&amp;rev=1775394364&amp;do=diff</link>
        <description>Getting Started and Configuration

	&quot; First, we can configure the editor and command-line settings.&quot;


# Enable automatic command-line highlighting:
git config --global color.ui auto
# Set up the general editor for commits:
git config --global core.editor notepad++
# In older Git versions, the default branch is &quot;master.&quot; This command sets the default branch to &quot;main&quot;—the modern standard—for all newly created projects.
git config --global init.defaultBranch main
# Lists all your current Git setti…</description>
    </item>
    <item rdf:about="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:multipleaccounts&amp;rev=1775392965&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-05T12:42:45+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Using Multiple Githup Accounts on One Computer</title>
        <link>https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:multipleaccounts&amp;rev=1775392965&amp;do=diff</link>
        <description>Using Multiple Githup Accounts on One Computer

I am writing for the Windows operating system, but the logic should work for other operating systems as well. With 5 simple steps we will be able to switch between accounts whenever we want.

	*  Generate SSH keys for all accounts</description>
    </item>
    <item rdf:about="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:sidebar&amp;rev=1775394151&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-05T13:02:31+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>UCH Viki</title>
        <link>https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:sidebar&amp;rev=1775394151&amp;do=diff</link>
        <description>UCH Viki

	*  Engineering Sciences
	*  Computer Science
		*  Developer Tools
			*  Git
				*  Git Basics
				*  CheatSheet
				*  Repo Configs
				*  Using Multiple GitHub Accounts on a Single Computer
				*  UCH&#039;s Git Flow

			*  Docker and Containerization
			*  Continuous Integration &amp; Deployment (CI/CD)
			*  IDEs and Text Editors

		*  Programming Languages
		*  Systems and Architecture
		*  Software Security and Reverse Engineering

	*  Mathematics
	*  English

&lt;https://wiki.ulascemh.com/d…</description>
    </item>
    <item rdf:about="https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:start&amp;rev=1775391756&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-05T12:22:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Git and Version Control</title>
        <link>https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:start&amp;rev=1775391756&amp;do=diff</link>
        <description>Git and Version Control

	*  Git Basics (init, add, commit)
		*  Branching and Merging
		*  Remote Repositories (GitHub, GitLab)

&lt;https://wiki.ulascemh.com/doku.php?id=en:cs:devtools:git:start&gt;</description>
    </item>
</rdf:RDF>
