Video Tutorial -
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
in This Tutorial you Will Learn "How To create a new project in GitLab."
GitLab is a GitHub-like service that provides web-based DevOps internal management of Git repositories.
Offcial Website -https://docs.gitlab.com/
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Testing Environment:
Ubuntu 18.04.4 LTS bionic Hostname - www.yourdomain.com - ip Address - 192.168.1.40
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
http://www.yourdomain.com
git config --global user.name "root"
git config --global user.email "admin@yourdomain.com"
git config --global --list
git clone http://www.yourdomain.com/root/NAME-OF-PROJECT.git
cd NAME-OF-PROJECT
touch README.md
nano README.md
#General information
# Usage
Subscribe share Like
git add README.md
git commit -m "add README"
git push -u origin master
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
No comments:
Post a Comment