वेब विकास

रोडमैप क्या है HTTP क्या है एचटीएमएल क्या है सीएसएस क्या है उत्तरदायी क्या है जावास्क्रिप्ट क्या है ES5 क्या है? एचटीएमएल डोम क्या है गूगल मैप्स क्या है गूगल फॉन्ट क्या है Google चार्ट क्या है एक्सएमएल क्या है अजाक्स क्या है? JSON क्या है सीएसएस प्रतीक क्या है बूटस्ट्रैप क्या है W3.CSS क्या है सीएलआई क्या है? एनपीएम . क्या है गिटहब क्या है jQuery क्या है एंगुलरजेएस क्या है प्रतिक्रिया क्या है Vue.js क्या है W3.JS क्या है? फ्रंट-एंड देव क्या है। फुलस्टैक क्या है फुलस्टैक JS क्या है? एसक्यूएल क्या है

अमेज़न एडब्ल्यूएस

एडब्ल्यूएस ईसी2 क्या है एडब्ल्यूएस आरडीएस क्या है एडब्ल्यूएस क्लाउडफ्रंट क्या है एडब्ल्यूएस एसएनएस क्या है लोचदार बीनस्टॉक क्या है एडब्ल्यूएस ऑटो स्केलिंग क्या है एडब्ल्यूएस आईएएम क्या है? एडब्ल्यूएस अरोड़ा क्या है एडब्ल्यूएस डायनेमोडीबी क्या है एडब्ल्यूएस वैयक्तिकृत क्या है एडब्ल्यूएस मान्यता क्या है एडब्ल्यूएस क्विकसाइट क्या है एडब्ल्यूएस पोली क्या है एडब्ल्यूएस पिनपॉइंट क्या है

गिटहब क्या है?


एचटीएमएल

GitHub सहयोग और संस्करण नियंत्रण के लिए एक कोड होस्टिंग प्लेटफ़ॉर्म है।

गिटहब आपको (और अन्य) परियोजनाओं पर एक साथ काम करने देता है।


https://github.com/ पर GitHub के लिए साइन अप करें:

GitHub

गिटहब अनिवार्य हैं:

  • डेटा संग्रह स्थान
  • शाखाओं
  • करता है
  • पुल अनुरोध
  • गिट (संस्करण नियंत्रण सॉफ्टवेयर गिटहब पर बनाया गया है)

उदाहरण

$ git push origin heroku
$ cd /etc/
$ ls

कोष

एक विकास परियोजना को स्टोर करने के लिए एक गिटहब भंडार का उपयोग किया जा सकता है ।

इसमें फ़ोल्डर और किसी भी प्रकार की फाइलें (एचटीएमएल, सीएसएस, जावास्क्रिप्ट, दस्तावेज़, डेटा, छवियां) हो सकती हैं।

GitHub रिपॉजिटरी में प्रोजेक्ट के बारे में एक लाइसेंस फ़ाइल और एक README फ़ाइल भी शामिल होनी चाहिए।

GitHub रिपॉजिटरी का उपयोग विचारों, या किसी ऐसे संसाधन को संग्रहीत करने के लिए भी किया जा सकता है जिसे आप साझा करना चाहते हैं।


डाली

A GitHub branch is used to work with different versions of a repository at the same time.

By default a repository has a master branch (a production branch).

Any other branch is a copy of the master branch (as it was at a point in time).

New Branches are for bug fixes and feature work separate from the master branch. When changes are ready, they can be merged into the master branch. If you make changes to the master branch while working on a new branch, these updates can be pulled in.


Commits

At GitHub, changes are called commits.

Each commit (change) has a description explaining why a change was made.


Pull Requests

Pull Requests are the heart of GitHub collaboration.

With a pull request you are proposing that your changes should be merged (pulled in) with the master.

Pull requests show content differences, changes, additions, and subtractions in colors (green and red).

As soon as you have a commit, you can open a pull request and start a discussion, even before the code is finished.

A a great way to learn GitHub, before working on larger projects, is to open pull requests in your own repository and merge them yourself.

You merge any changes into the master by clicking a "Merge pull request" button.

GitHub

After merging you can delete the branch by clicking a "Delete branch button".

GitHub