SlideShare uma empresa Scribd logo
Code is like poetry, and Git
helps us write it together,
beautifully and
collaboratively, one commit
at a time.
Srinjay Das Gupta
Google DSC’23 Web Dev Lead
Narula Institute of Technology
Intermediate Git
Concepts and Tools
Narula Institute of Technology
• Brief Introduction to Git
• Git Branches
• Merging
• Rebasing
• Merging Conflicts
• Remotes
• Forks
• Pull Requests
• Git Situational Tools
• All about Open Source
Agenda
Brief Introduction to Git
Narula Institute of Technology
What is Git?
What is Git?
Git is free and open source software for distributed version
control: tracking changes in any set of files, usually used for
coordinating work among programmers collaboratively
developing source code during software development.
Basic Git Commands
1. git init:
This command initialises a new git repository
2. git clone:
This command creates a copy of a remote
repository in your local machine
3. git push:
This command updates staged local changes to the
remote
4. git pull:
This command updates local machine with changes
made in the remote
Git Branches and how
to use them
Narula Institute of Technology
What are Branches?
How to Create, Rename
and Delete Branches
● Create: git branch
<branch name>
● Rename: git branch -m
<new branch name>
● Delete: git branch -d
<branch name>
Narula Institute Of Technology
What do we do after we
finished working on a
branch?
WE…
How do we Merge?
We merge by:
1. Checkout the target
branch
2. Run the command:
git merge <branch name>
Git Rebase
Narula Institute of Technology
Narula Institute of technology
How do we Rebase
● First we checkout the branch we want to
rebase
● Then we run the command:
git rebase <target branch name>
Merging vs Rebasing:
Merging Pros
● Preserves History 📑
● Better for Merge
Conflicts✅
● Easy to undo 🔄
Rebasing Pros
● Cleaner History 📃
● More readable graph 👀
● Tougher to resolve
conflicts ⚠️
Merge Conflicts
Narula Institute of Technology
Merge Conflicts Can Occur During
Merging a Branch Rebasing Cherry Picking
Remotes, Forks and
Pull Requests
Narula Institute of Technology
Remotes
● Git remotes are remote
repositories (like
GitHub) where you store
and synchronize copies of
your project.
Fork
● A clone of a git
repository, typically
hosted on a git hosting
service
Pull Request
● An event where a
contributor asks a repo
manager to review code
they wish to merge into a
project
● Also known as Merge
Request
Git Situational Tools
Situational Tools:
● Stashing
● Cherry Picking
● Squashing
What is Stashing?
Narula Institute of Technology
How to Stash and apply stashed changes?
Stashing Changes:
To stash unstaged changes, you
simply run the command: git
stash and it will store all the
changes in the stash stack.
There are two ways of applying
stashed changes:
● git stash apply: This
applies the most recent
stashed change to the
working directory but it
also keeps it stored in the
stash stack
● git stash pop: It does the
same work, but deletes it
from the stash stack
What is Cherry Picking?
Narula Institute of Technology
Git cherry-pick lets you
selectively apply
individual commits from
one branch to another.
Cherry Picking Illustration
Narula Institute of Technology
How to Cherry Pick
To cherry pick a commit we need the SHA of the commit(s).
This can be done by running a git log on the branch from
where to cherry pick.
Finally to cherry pick:
● Checkout the target branch
● Run: git cherry-pick <commitSHA>
● To cherry pick multiple commits, add the SHA ids of the
commits one by one and git will cherry pick them in the
order they are given in the command. Like:
git cherry-pick <commit1SHA> <commit2SHA> ...
Of course, your alternative is to copy-paste all your changes to
the new branch.
CAUTION ⚠️
Cherry Picking should be used
sparingly because:
● it can lead to merge
conflicts
● it can cause duplicate
commits on separate
branches
SQUASHING
Narula Institute of Technology
How to Squash
There are two ways to squash
commits:
● Interactive Rebase
git rebase -i <target
branch name>
● And “--squash” to “git
merge”, i.e.,
git merge --squash
WorkEx doesn’t require a
job letter. You just need a
laptop and a will to work.
Narula Institute of Technology
Rajdip Bhattacharya
Google DSC’23 Cloud & DevOps Lead
Open Source: The nice Parts
Narula Institute of Technology
Why Open-source? And why
should you do it?
● Open source encourages innovation through collaboration.
● It allows customers to know how the code works, facilitating the development
of the most innovative software.
● It allows reuse and recycling of code, making it easier to collaborate and
achieve goals, rather than to recreate the wheel.
● Open source communities
● Growth and networking
● Skill development
● Scope of full time offers
● Bounty
Narula Institute of Technology
Perks of Open Source
Community Questions
● How to find relevant projects
for our contributions?
● When learning a framework, how
can I gauge my readiness to
contribute to an open-source
project despite feeling
overwhelmed by real codebases?
THANKYOU

Mais conteúdo relacionado

Semelhante a Open Sprintera (Where Open Source Sparks a Sprint of Possibilities)

Git github
Git githubGit github
Git github
Anurag Deb
 
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
Robert Lee-Cann
 
Introducing Git and git flow
Introducing Git and git flow Introducing Git and git flow
Introducing Git and git flow
Sebin Benjamin
 
Git basics a starter on git and its ecosystem
Git basics  a starter on git and its ecosystemGit basics  a starter on git and its ecosystem
Git basics a starter on git and its ecosystem
François D'Agostini
 
Git introduction for Beginners
Git introduction for BeginnersGit introduction for Beginners
Git introduction for Beginners
MortezaTaghaddomi
 
Git essential training & sharing self
Git essential training & sharing selfGit essential training & sharing self
Git essential training & sharing self
Chen-Tien Tsai
 
Git 101: Force-sensitive to Jedi padawan
Git 101: Force-sensitive to Jedi padawanGit 101: Force-sensitive to Jedi padawan
Git 101: Force-sensitive to Jedi padawan
James Ford
 
Gn unify git
Gn unify gitGn unify git
Gn unify git
Priyanka Nag
 
Git Basics
Git BasicsGit Basics
Git Basics
Ryan Condron
 
Git from the trenches
Git from the trenchesGit from the trenches
Git from the trenches
Nuno Caneco
 
Git and GitHub Info Session
Git and GitHub Info SessionGit and GitHub Info Session
Git and GitHub Info Session
SawanBhattacharya
 
Git - Simplified For Testers
Git - Simplified For TestersGit - Simplified For Testers
Git - Simplified For Testers
upadhyay_25
 
Data science Git management
Data science Git managementData science Git management
Data science Git management
Arindam Banerjee
 
GitHub Event.pptx
GitHub Event.pptxGitHub Event.pptx
GitHub Event.pptx
KeerthanaJ32
 
Github By Nyros Developer
Github By Nyros DeveloperGithub By Nyros Developer
Github By Nyros Developer
Nyros Technologies
 
Git for work groups ironhack talk
Git for work groups ironhack talkGit for work groups ironhack talk
Git for work groups ironhack talk
Tiago Ameller
 
GDSC ZHCET GitHub Session.pdf
GDSC ZHCET GitHub Session.pdfGDSC ZHCET GitHub Session.pdf
GDSC ZHCET GitHub Session.pdf
gdsczhcet
 
Git interview questions | Edureka
Git interview questions | EdurekaGit interview questions | Edureka
Git interview questions | Edureka
Edureka!
 
Mini-training: Let’s Git It!
Mini-training: Let’s Git It!Mini-training: Let’s Git It!
Mini-training: Let’s Git It!
Betclic Everest Group Tech Team
 
devops-complete-notes-2.pdf
devops-complete-notes-2.pdfdevops-complete-notes-2.pdf
devops-complete-notes-2.pdf
RobinRohit2
 

Semelhante a Open Sprintera (Where Open Source Sparks a Sprint of Possibilities) (20)

Git github
Git githubGit github
Git github
 
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
 
Introducing Git and git flow
Introducing Git and git flow Introducing Git and git flow
Introducing Git and git flow
 
Git basics a starter on git and its ecosystem
Git basics  a starter on git and its ecosystemGit basics  a starter on git and its ecosystem
Git basics a starter on git and its ecosystem
 
Git introduction for Beginners
Git introduction for BeginnersGit introduction for Beginners
Git introduction for Beginners
 
Git essential training & sharing self
Git essential training & sharing selfGit essential training & sharing self
Git essential training & sharing self
 
Git 101: Force-sensitive to Jedi padawan
Git 101: Force-sensitive to Jedi padawanGit 101: Force-sensitive to Jedi padawan
Git 101: Force-sensitive to Jedi padawan
 
Gn unify git
Gn unify gitGn unify git
Gn unify git
 
Git Basics
Git BasicsGit Basics
Git Basics
 
Git from the trenches
Git from the trenchesGit from the trenches
Git from the trenches
 
Git and GitHub Info Session
Git and GitHub Info SessionGit and GitHub Info Session
Git and GitHub Info Session
 
Git - Simplified For Testers
Git - Simplified For TestersGit - Simplified For Testers
Git - Simplified For Testers
 
Data science Git management
Data science Git managementData science Git management
Data science Git management
 
GitHub Event.pptx
GitHub Event.pptxGitHub Event.pptx
GitHub Event.pptx
 
Github By Nyros Developer
Github By Nyros DeveloperGithub By Nyros Developer
Github By Nyros Developer
 
Git for work groups ironhack talk
Git for work groups ironhack talkGit for work groups ironhack talk
Git for work groups ironhack talk
 
GDSC ZHCET GitHub Session.pdf
GDSC ZHCET GitHub Session.pdfGDSC ZHCET GitHub Session.pdf
GDSC ZHCET GitHub Session.pdf
 
Git interview questions | Edureka
Git interview questions | EdurekaGit interview questions | Edureka
Git interview questions | Edureka
 
Mini-training: Let’s Git It!
Mini-training: Let’s Git It!Mini-training: Let’s Git It!
Mini-training: Let’s Git It!
 
devops-complete-notes-2.pdf
devops-complete-notes-2.pdfdevops-complete-notes-2.pdf
devops-complete-notes-2.pdf
 

Último

Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !
Marcin Chrost
 
Mobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona InfotechMobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona Infotech
Drona Infotech
 
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
dakas1
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
dakas1
 
Using Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional SafetyUsing Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional Safety
Ayan Halder
 
SQL Accounting Software Brochure Malaysia
SQL Accounting Software Brochure MalaysiaSQL Accounting Software Brochure Malaysia
SQL Accounting Software Brochure Malaysia
GohKiangHock
 
E-Invoicing Implementation: A Step-by-Step Guide for Saudi Arabian Companies
E-Invoicing Implementation: A Step-by-Step Guide for Saudi Arabian CompaniesE-Invoicing Implementation: A Step-by-Step Guide for Saudi Arabian Companies
E-Invoicing Implementation: A Step-by-Step Guide for Saudi Arabian Companies
Quickdice ERP
 
Oracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptxOracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptx
Remote DBA Services
 
What next after learning python programming basics
What next after learning python programming basicsWhat next after learning python programming basics
What next after learning python programming basics
Rakesh Kumar R
 
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
mz5nrf0n
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
Green Software Development
 
zOS Mainframe JES2-JES3 JCL-JECL Differences
zOS Mainframe JES2-JES3 JCL-JECL DifferenceszOS Mainframe JES2-JES3 JCL-JECL Differences
zOS Mainframe JES2-JES3 JCL-JECL Differences
YousufSait3
 
Lecture 2 - software testing SE 412.pptx
Lecture 2 - software testing SE 412.pptxLecture 2 - software testing SE 412.pptx
Lecture 2 - software testing SE 412.pptx
TaghreedAltamimi
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
Grant Fritchey
 
Fundamentals of Programming and Language Processors
Fundamentals of Programming and Language ProcessorsFundamentals of Programming and Language Processors
Fundamentals of Programming and Language Processors
Rakesh Kumar R
 
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling ExtensionsUI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
Peter Muessig
 
Modelling Up - DDDEurope 2024 - Amsterdam
Modelling Up - DDDEurope 2024 - AmsterdamModelling Up - DDDEurope 2024 - Amsterdam
Modelling Up - DDDEurope 2024 - Amsterdam
Alberto Brandolini
 
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
Bert Jan Schrijver
 
Malibou Pitch Deck For Its €3M Seed Round
Malibou Pitch Deck For Its €3M Seed RoundMalibou Pitch Deck For Its €3M Seed Round
Malibou Pitch Deck For Its €3M Seed Round
sjcobrien
 
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CDKuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
rodomar2
 

Último (20)

Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !
 
Mobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona InfotechMobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona Infotech
 
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
 
Using Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional SafetyUsing Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional Safety
 
SQL Accounting Software Brochure Malaysia
SQL Accounting Software Brochure MalaysiaSQL Accounting Software Brochure Malaysia
SQL Accounting Software Brochure Malaysia
 
E-Invoicing Implementation: A Step-by-Step Guide for Saudi Arabian Companies
E-Invoicing Implementation: A Step-by-Step Guide for Saudi Arabian CompaniesE-Invoicing Implementation: A Step-by-Step Guide for Saudi Arabian Companies
E-Invoicing Implementation: A Step-by-Step Guide for Saudi Arabian Companies
 
Oracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptxOracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptx
 
What next after learning python programming basics
What next after learning python programming basicsWhat next after learning python programming basics
What next after learning python programming basics
 
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
 
zOS Mainframe JES2-JES3 JCL-JECL Differences
zOS Mainframe JES2-JES3 JCL-JECL DifferenceszOS Mainframe JES2-JES3 JCL-JECL Differences
zOS Mainframe JES2-JES3 JCL-JECL Differences
 
Lecture 2 - software testing SE 412.pptx
Lecture 2 - software testing SE 412.pptxLecture 2 - software testing SE 412.pptx
Lecture 2 - software testing SE 412.pptx
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
 
Fundamentals of Programming and Language Processors
Fundamentals of Programming and Language ProcessorsFundamentals of Programming and Language Processors
Fundamentals of Programming and Language Processors
 
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling ExtensionsUI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
 
Modelling Up - DDDEurope 2024 - Amsterdam
Modelling Up - DDDEurope 2024 - AmsterdamModelling Up - DDDEurope 2024 - Amsterdam
Modelling Up - DDDEurope 2024 - Amsterdam
 
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
 
Malibou Pitch Deck For Its €3M Seed Round
Malibou Pitch Deck For Its €3M Seed RoundMalibou Pitch Deck For Its €3M Seed Round
Malibou Pitch Deck For Its €3M Seed Round
 
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CDKuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
 

Open Sprintera (Where Open Source Sparks a Sprint of Possibilities)

  • 1.
  • 2. Code is like poetry, and Git helps us write it together, beautifully and collaboratively, one commit at a time. Srinjay Das Gupta Google DSC’23 Web Dev Lead Narula Institute of Technology
  • 3. Intermediate Git Concepts and Tools Narula Institute of Technology
  • 4. • Brief Introduction to Git • Git Branches • Merging • Rebasing • Merging Conflicts • Remotes • Forks • Pull Requests • Git Situational Tools • All about Open Source Agenda
  • 5. Brief Introduction to Git Narula Institute of Technology
  • 7. What is Git? Git is free and open source software for distributed version control: tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development.
  • 8. Basic Git Commands 1. git init: This command initialises a new git repository 2. git clone: This command creates a copy of a remote repository in your local machine 3. git push: This command updates staged local changes to the remote 4. git pull: This command updates local machine with changes made in the remote
  • 9. Git Branches and how to use them Narula Institute of Technology
  • 11.
  • 12. How to Create, Rename and Delete Branches ● Create: git branch <branch name> ● Rename: git branch -m <new branch name> ● Delete: git branch -d <branch name>
  • 13. Narula Institute Of Technology What do we do after we finished working on a branch? WE…
  • 14. How do we Merge? We merge by: 1. Checkout the target branch 2. Run the command: git merge <branch name>
  • 16. Narula Institute of technology How do we Rebase ● First we checkout the branch we want to rebase ● Then we run the command: git rebase <target branch name>
  • 17.
  • 18. Merging vs Rebasing: Merging Pros ● Preserves History 📑 ● Better for Merge Conflicts✅ ● Easy to undo 🔄 Rebasing Pros ● Cleaner History 📃 ● More readable graph 👀 ● Tougher to resolve conflicts ⚠️
  • 20. Merge Conflicts Can Occur During Merging a Branch Rebasing Cherry Picking
  • 21. Remotes, Forks and Pull Requests Narula Institute of Technology
  • 22. Remotes ● Git remotes are remote repositories (like GitHub) where you store and synchronize copies of your project.
  • 23. Fork ● A clone of a git repository, typically hosted on a git hosting service
  • 24. Pull Request ● An event where a contributor asks a repo manager to review code they wish to merge into a project ● Also known as Merge Request
  • 26. Situational Tools: ● Stashing ● Cherry Picking ● Squashing
  • 27. What is Stashing? Narula Institute of Technology
  • 28. How to Stash and apply stashed changes? Stashing Changes: To stash unstaged changes, you simply run the command: git stash and it will store all the changes in the stash stack. There are two ways of applying stashed changes: ● git stash apply: This applies the most recent stashed change to the working directory but it also keeps it stored in the stash stack ● git stash pop: It does the same work, but deletes it from the stash stack
  • 29. What is Cherry Picking? Narula Institute of Technology
  • 30. Git cherry-pick lets you selectively apply individual commits from one branch to another. Cherry Picking Illustration Narula Institute of Technology
  • 31. How to Cherry Pick To cherry pick a commit we need the SHA of the commit(s). This can be done by running a git log on the branch from where to cherry pick. Finally to cherry pick: ● Checkout the target branch ● Run: git cherry-pick <commitSHA> ● To cherry pick multiple commits, add the SHA ids of the commits one by one and git will cherry pick them in the order they are given in the command. Like: git cherry-pick <commit1SHA> <commit2SHA> ...
  • 32. Of course, your alternative is to copy-paste all your changes to the new branch.
  • 33. CAUTION ⚠️ Cherry Picking should be used sparingly because: ● it can lead to merge conflicts ● it can cause duplicate commits on separate branches
  • 35. How to Squash There are two ways to squash commits: ● Interactive Rebase git rebase -i <target branch name> ● And “--squash” to “git merge”, i.e., git merge --squash
  • 36. WorkEx doesn’t require a job letter. You just need a laptop and a will to work. Narula Institute of Technology Rajdip Bhattacharya Google DSC’23 Cloud & DevOps Lead
  • 37. Open Source: The nice Parts Narula Institute of Technology
  • 38. Why Open-source? And why should you do it? ● Open source encourages innovation through collaboration. ● It allows customers to know how the code works, facilitating the development of the most innovative software. ● It allows reuse and recycling of code, making it easier to collaborate and achieve goals, rather than to recreate the wheel.
  • 39.
  • 40. ● Open source communities ● Growth and networking ● Skill development ● Scope of full time offers ● Bounty Narula Institute of Technology Perks of Open Source
  • 41. Community Questions ● How to find relevant projects for our contributions? ● When learning a framework, how can I gauge my readiness to contribute to an open-source project despite feeling overwhelmed by real codebases?

Notas do Editor

  1. As web developers, mastering Git is essential. Today, we'll explore this invaluable tool, breaking down its magic and transforming you from a solo coder to a collaborative rockstar! Forget confusion, embrace clarity, and let's write code that shines even when we're working in different time zones.