<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://techdoku.nogafam.es/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://techdoku.nogafam.es/feed.php">
        <title>NoBIGTech Wiki Técnico - docu:csheet:sysadm:script:git</title>
        <description></description>
        <link>https://techdoku.nogafam.es/</link>
        <image rdf:resource="https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-05T01:26:01+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:changes_directory&amp;rev=1644401488&amp;do=diff"/>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:copy_branch&amp;rev=1636417761&amp;do=diff"/>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:delete_branch&amp;rev=1636417645&amp;do=diff"/>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:merge_upstream&amp;rev=1634714376&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>NoBIGTech Wiki Técnico</title>
        <link>https://techdoku.nogafam.es/</link>
        <url>https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:changes_directory&amp;rev=1644401488&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-02-09T10:11:28+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>changes_directory</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:changes_directory&amp;rev=1644401488&amp;do=diff</link>
        <description>Show files changed history and commits in an specific directory



This one is more similar to the svn command as it shows the file status: Added (A), Copied (C), Deleted (D), Modified (M), Renamed (R), and others.


git log --name-status -10 path/to/dir</description>
    </item>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:copy_branch&amp;rev=1636417761&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-11-09T00:29:21+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>copy_branch</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:copy_branch&amp;rev=1636417761&amp;do=diff</link>
        <description>Copy branch from a remote to another remote





# imagine the branch is &quot;stable-3.4&quot;
git checkout -b stable-3.4 upstream/stable-3.4
git push origin stable-3.4</description>
    </item>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:delete_branch&amp;rev=1636417645&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-11-09T00:27:25+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>delete_branch</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:delete_branch&amp;rev=1636417645&amp;do=diff</link>
        <description>Delete branch from both local and remote





git branch -d BRANCHNAME
git push origin --delete BRANCHNAME</description>
    </item>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:merge_upstream&amp;rev=1634714376&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-10-20T07:19:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>merge_upstream</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:script:git:merge_upstream&amp;rev=1634714376&amp;do=diff</link>
        <description>Merge the upstream of your fork automatically



We will use the &lt;https://git.nogafam.es/nogafam/instante-social&gt; repository for the example (as a fork of Mastodon):


# clone your repo (if you didn&#039;t yet)
git clone https://git.nogafam.es/nogafam/instante-social.git
cd instante-social

# on the project root path, add a new remote called &quot;upstream&quot;
#  (a standard way to call it, but you can call it whatever)
git remote add upstream https://github.com/mastodon/mastodon.git

# this previous steps, …</description>
    </item>
</rdf:RDF>
