Git: Difference between revisions
Jump to navigation
Jump to search
Line 24: | Line 24: | ||
git commit -m "initial commit" | git commit -m "initial commit" | ||
git push -u origin master | git push -u origin master | ||
</pre> | |||
== Overwrite local from repository == | |||
<pre> | |||
git fetch --all | |||
git reset --hard origin/master | |||
</pre> | </pre> | ||
Revision as of 16:21, 1 January 2024
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 git@gitlab.com:scottcamacmartin/my_project.git
Upload Existing Code Directory as Gitlab Repository
First, creat a new project on gitlab. Then, on the local dev machine:
git clone git@gitlab.com:scottcamacmartin/my_project.git cd my_project # then copy code into new folder my_project # DELETE ANY SENSITIVE PASSWORDS, ETC # also set up .gitignore file git status git add . git commit -m "initial commit" git push -u origin master
Overwrite local from repository
git fetch --all git reset --hard origin/master