0% found this document useful (0 votes)
36 views1 page

Front End Notes

The document outlines steps for configuring SSH keys and setting up Git with a user profile, including cloning a remote repository and making initial commits. It also provides instructions for installing TypeScript and Angular, compiling TypeScript files, and creating an Angular project and components. The commands are presented in a sequential manner for ease of execution.

Uploaded by

klucse2000030191
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views1 page

Front End Notes

The document outlines steps for configuring SSH keys and setting up Git with a user profile, including cloning a remote repository and making initial commits. It also provides instructions for installing TypeScript and Angular, compiling TypeScript files, and creating an Angular project and components. The commands are presented in a sequential manner for ease of execution.

Uploaded by

klucse2000030191
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

--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

You might also like