Git: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

8 December 2021

  • curprev 20:1120:11, 8 December 2021Deathbybandaid talk contribs 1,139 bytes +1,139 Created page with "This is a cheatsheet for git stuff ==Pull a specific directory== <nowiki>git -C /home/sopel/sopel/ pull</nowiki> ==Syncing your fork with upstream== Step 1) configure remote repository as upstream <nowiki>git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git</nowiki> Step 2) checkout your branch to sync, usually master <nowiki>git checkout master</nowiki> Step 4) fetch upstream <nowiki>git fetch upstream</nowiki> Step 4) merge upstream <n..." Tag: Visual edit