GitHub Set up

nana ๐Ÿง™๐Ÿปโ€โ™€๏ธ
Design & Code Repository
3 min readAug 24, 2018

--

For beginner

1. Checking for existing SSH keys

Copy and Paste below code to your clipboard..

$ ls -al ~/.ssh

2.Copy the SSH key to your clipboard.

$ pbcopy < ~/.ssh/id_rsa.pub

3. Go to github settings to create New SSH key

4. Paste the SSH key

5. Go to the repository and copy(clone) the link

6. Go to terminal and clone it.

$ git clone http://giyhub.com/.....git

7.NPM install

In our case, fe30 is a project root, it includes all kinds of files; WordPress, php etc. and Frontend root is in the build folder like below;

If you need to know where is a frontend root to install node or npm.

Usually, there is a package.json file.

Letโ€™s install npm in the build folder

As you can see above image, there isnโ€™t a npm and node too.

Download node

Go to termianl and type like below;

$ node -v$ npm -v$ npm install

**Terminal Tips

Blue colours are folders. Others are just files.

How to set up terminal window.

I usually make three horizontal taps in the one project.

The first tap is for git comments such as pull, push and commits.

The second tap is for changing HTML code.

The last tap is for running npm.

Thatโ€™t all for nowโค๏ธ

๐Ÿ˜„

Lastly, I would like to share <FrontEnd30 /> where I learnt many cool front-end techniques.

๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰ Happy Coding Today ๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰

--

--