πŸ“„Git

vr.room = new test

tried permissions

delete .git folder to restart

Git Bash
Git LFS
GitLab

git lfs install

git lfs track ".psd"

git config --global user.name "tutorial"

git config --global user.email abc@aol.co

git init

git init

git add .

git add .

git commit -m "msg"

git commit -m "msg"

git remote add origin <URL>

git remote -v

git push -u origin main

git status

git push -u origin main

GitLab VIDEO:

- logged in
- create new project (no readme, private)
- open gitbash
- user.name & user.email

- create folder 
$ git init
- create text file
$ git status
  - untracked files:
$ git add .
$ git commit -m "msg"
$ git status
  - nothing to commit. working tree clean
$ git remote add origin https://gitlab.com
$ git remote -v
$ git push -u origin main

EXTRA From GitLab

Git global setup

Create a new repository

Push an existing folder

Push an existing Git repository

Sources:

Last updated