Published articles during my intern @OpenGenus
Published articles during my intern @OpenGenus at link
2. HTML Features: Drag and Drop
4. HTML Elements: Class and Id attribute
11. Apache Maven=> Create a Java project using Command line
12. Sidebar implementation in HTML
14. Shell Scripting Looping Structures
15. Shell Scripting Control Structures
16. Functions in Shell Scripts
17. Full Stack Calculator Project using DevOps tools
20. GNU Tape Archiver Compression tool for Unix like systems
21. SonarQube for Code coverage and Analysis
23. Introduction to Containerization using Docker
$ git clone "Upstream repository URL"
$ cd <Repository name>
$ git fork
$ git remote add upstream "<url of upstream>"
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
$ git push -f origin master
$ git branch <feature_branch>
$ git checkout <feature_branch>
Do your work on this branch and then perform following steps
$ git add <files>
$ git commit -m "commit message"
$ git push -f origin <feature_branch>
Create a pull request from your fork’s feature branch to upstream’s master branch.
Step 1: Merge changes on local machine
$ git fetch origin
$ git checkout -b <branchname> origin/<branchname>
$ git merge master
Step 2: Merge the changes and update on GitHub.
$ git checkout master
$ git merge --no-ff <branchname>
$ git push origin master