-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogR2.html
103 lines (98 loc) · 5.73 KB
/
blogR2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>READ BLOGS|AMAL OUSEPH</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navigation container">
<div class="nav brand">
<a href="https://pantherblack5.netlify.app/" class="link link-active">AmalOuseph</a>
</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a href="https://pantherblack5.netlify.app/" class="link link-active">HOME</a>
</li>
<li class="list-item-inline">
<a href="project.html" class="link">PROJECTS</a>
</li>
<li class="list-item-inline">
<a href="blogs.html" class="link">BLOGS</a>
</li>
</ul>
</nav>
<section class="section-read">
<h2>GIT</h2>
<img src="/image/git.png" alt="Git image">
<p>Git is an open source software which is used to track any changes done in the program.It is basically created for the coordination of work between the team with less effort.</p>
<ol>
<p>
In the second lecture we focussed on the following softwares:
<ul>
<li>
<b>git</b>-Git is a version control tool that will allow you to perform all kinds of operations to fetch data from the central server or push data to it.
</li>
<li>
<b>github</b>-GitHub is a core hosting platform for version control collaboration. GitHub is a company that allows you to host a central repository in a remote server.
</li>
<li>
<b>VS code</b>- Visual Studio Code lets you build and debug modern web and cloud applications.It is an <abbr title="INTEGRATED DEVELOPMENT ENVIRONMENT">IDE</abbr> which helps coder to write and test their code.
</li>
<li>
<b>netlify</b>-Netlify is a web developer platform that multiplies productivity. By unifying the elements of the modern decoupled web, from local development to advanced edge logic.
</li>
</ul>
</p>
<li>
<u><b>index.html</b></u> - This file contains the blueprint of website,how it should be made,what it should contain.
</li>
<li>
<u><b>Read.me</b></u> - A README file contains information about the other files in a directory or archive of computer software. A form of documentation, it is usually a simple plain text file called README.
</li>
<li>
<u><b>.gitignore</b></u> - The . gitignore file tells Git which files to ignore when committing your project to the GitHub repository. gitignore is located in the root directory of your repo. / will ignore directories with the name.
</li>
<li>
<u><b>adding and removing</b></u> - In github desktop,when anything is added it shows green color and when anything is removed it shows red color.So,this way you know what changes has been done in github.
</li>
<li>
<u><b>commit</b></u> - A commit, or "revision", is an individual change to a file (or set of files). It's like when you save a file, except with Git, every time you save it creates a unique ID that allows you to keep record of what changes were made when and by who.
</li>
<li>
<u><b>push</b></u> - The git push command is used to upload local repository content to a remote repository. Pushing is how you transfer commits from your local repository to a remote repo.
</li>
<li>
<u><b>pull request</b></u> - Pull requests let you tell others about changes you've pushed to a branch in a repository on GitHub. Once a pull request is opened, you can discuss and review the potential changes with collaborators and add follow-up commits before your changes are merged into the base branch.
</li>
<li>
<u><b>web hosting</b></u> - Web hosting is an online service that allows you to publish your website files onto the internet. So, anyone who has access to the internet has access to your website.This is where netlify comes into action
</li>
<li>
<u><b>deploys in netlify</b></u> - There is a section called deploys which contains the history of websites you have deployed from netlify.
</li>
<li>
<u><b>branch in github</b></u> - A branch is a version of the repository that diverges from the main working project. It is a feature available in most modern version control systems.
</li>
</ol>
</section>
<footer class="footer">
<div class="footer-header">
Find ME at
</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a href="https://github.com/pantherblack34" target="_blank"><img src="/image/github-modified.png" alt="github"></a>
</li>
<li class="list-item-inline">
<a href="https://twitter.com/AmalOusephspook?s=09" target="_blank"><img src="/image/twitter-modified.png" alt="twitter"></a>
</li>
<li class="list-item-inline">
<a href="https://www.linkedin.com/in/pantherblack-Amal-Ouseph" target="_blank"><img src="/image/linked-modified.png" alt="linkedin"></a>
</li>
</ul>
</footer>
</body>
</html>