--configure ssh key
ssh -Version
ssh-keygen -t rsa
--Then profile--preferences---ssh keys--paste the key from users/HP/.ssh file --
id_rsa--right click --gitbash
git config --global [Link] "klucse2000030191"
git config --global [Link] "klucse2000030191@[Link]"
git config --global [Link] "klucse2000030191"
ssh -T git@[Link]
--clone the remote repository into local system--got to project--copy ssh key--
git@[Link]:klucse2000030191/[Link]
git clone git@[Link]:klucse2000030191/[Link]
cd FEWD-S7
git status-->(untracked)
git add .
git status
git commit -m "This is first commit"
git push
-->open the file in gitlab and click on open with webID
=============================================================
git branch
fel
git branch -d fel
git branch
ls
touch [Link]
-------------------------------------------------------
git status
git add .
git commit -m "First"
git push
================================
Typescript:
install the typescript
npm i -g typescript
tsc --version // to know the version of typescript
extension of typescript program-> [Link]
//to compile the tyescript file
tsc [Link]
-------------------angular--------------
npm install -g @angular/cli
ng new my-project
to run the server--------- ng serve
create a component using the command:
ng generate component component_name