Git: Difference between revisions

From Wiki
Jump to navigation Jump to search
Created page with "== Initial Setup == <pre> git config --global user.name "Harry Truman" git config --global user.email "harry.truman@example.com" git config --global --list </pre>"
 
Line 4: Line 4:
git config --global user.email "harry.truman@example.com"
git config --global user.email "harry.truman@example.com"
git config --global --list
git config --global --list
</pre>
May need to set up SSH-key authentication for gitlab.
== Clone Repository ==
<pre>
git clone
</pre>
</pre>

Revision as of 19:15, 1 January 2021

Initial Setup

git config --global user.name "Harry Truman"
git config --global user.email "harry.truman@example.com"
git config --global --list

May need to set up SSH-key authentication for gitlab.

Clone Repository

git clone