Git: Difference between revisions
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
cd my_project | cd my_project | ||
# then copy code into new folder my_project | # then copy code into new folder my_project | ||
# DELETE ANY SENSITIVE PASSWORDS, ETC | |||
# also set up .gitignore file | # also set up .gitignore file | ||
git status | git status |
Revision as of 15:26, 3 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 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