Changes between Version 3 and Version 4 of Git


Ignore:
Timestamp:
Sep 24, 2024, 2:08:11 AM (7 weeks ago)
Author:
Izuru Yakumo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Git

    v3 v4  
    22== Git
    33The borderline insane distributed version control system from the depths of hell.\\
    4 You need authentication to push over HTTP, but for SSH you should be fine as-is.\\
    54See also `create-repo` from your [[Geidontei]] shell session.
    65
    76All repositories can be viewed at {{{ https://git.chaotic.ninja/gitweb/USER }}}\\
    87You must have a {{{ ~/public_git }}} directory and a shell account in order to appear on the user list found [https://git.chaotic.ninja here]
     8
     9== Setting up the remote
     10=== HTTP
     11In order to use this, you must create additional credentials from your shell session and notify the staff.
     12
     13{{{
     14git remote add origin https://git.chaotic.ninja/USER/REPOSITORY
     15}}}
     16
     17=== SSH
     18{{{
     19git remote add origin USER@chaotic.ninja:public_git/REPOSITORY.git
     20}}}