SlideShare a Scribd company logo
Hacktoberfest 2022
● Month long event.
● Encourages participation of Open Source
Software.
● Leads to personal growth, professional
opportunities, and community building
What is Hacktoberfest?
How to participate in
Hacktoberfest?
- Register for Hacktoberfest through their website.
- Have 4 pull/merge requests accepted between October
1 and October 31 to complete Hacktoberfest.
- Participants will get swag kits according to
hacktoberfest terms and conditions.
What is Open Source?
Open source itself states that code
which is freely available for everyone
and open for any modification and
redistribution.
Why Open Source?
● Working with teams will become cakewalk.
● Other interested folks can contribute.
● Help folks to connect and learn from different
communities.
Git and
GitHub
What is Git?
Git Works Everywhere!
What is
Getting your
machine ready
- Git in personal machine
(download it from the given QR)
- A text editor
- A GitHub account
Foundations of Git
Working with
Git
Useful Commands
and their
application
Initializing folder as a git
repository
● Command: git init
● It will initialize the current directory into a
git repository
Cloning repository from
remote to local
● Command: git clone <repository link>
● It will help us to copy the whole code which is
stored on a git service (github) to our local.
Staging changes
● Command: git add <filenames separated with spaces>
● Contributors have to stage their changes
● It will be helpful if individual want to push only some
of the changes instead of the whole code.
Checking Status of changes.
● Command: git status
● Gives the status of changed/staged
files/not staged files.
Committing your changes
● Command: git commit -m “commit message”
● Updates local repository with the staged
changes.
● It will also help to track the history in future
and revert it if needed.
Hacktoberfest 2022
Pulling changes
● Command: git pull
● Used to update the local repository with
remote repository.
Pushing changes.
● Command: git push
● It will push the changes from local system
to the remote repository.
That’s All Folks!
Connect with us
.

More Related Content

PDF
Smart Street System
PPTX
Pull requests do's and don'ts
PDF
QR Code Generator.pdf
PPTX
Smart safety jacket
PPTX
Virtual reality and augmented reality -Bournane Abdelkrim
PDF
GDSC ZHCET GitHub Session.pdf
PPTX
Hacktoberfest GDSC BBBDITM.pptx
PPTX
Introduction to git hub
Smart Street System
Pull requests do's and don'ts
QR Code Generator.pdf
Smart safety jacket
Virtual reality and augmented reality -Bournane Abdelkrim
GDSC ZHCET GitHub Session.pdf
Hacktoberfest GDSC BBBDITM.pptx
Introduction to git hub

Similar to Hacktoberfest 2022 (20)

PPTX
Workshop on Git and GitHub
PPTX
Git Basics for Software Version Management
PPTX
Understanding about git
PDF
Formation git
PPTX
Git, github and the hacktober fest
PPTX
Git and Github
PPTX
GDSC PHCET x Hacktober .pptx
PPTX
Git&GitHub.pptx
PDF
Gitgithub101slideshare 150922131830-lva1-app6891
PPTX
Github
PPTX
Git and GitHub
ODP
Git for standalone use
PPTX
Git training (basic)
PPTX
concordia hacktoberfest.pptx
PDF
Advanced Git Tutorial
PPTX
Version controll.pptx
PPTX
Git and github
PPTX
Version control git day02
PPTX
Github 101 An Adventurer's Guide To Open Source
PPTX
Hacktoberfest 2021
Workshop on Git and GitHub
Git Basics for Software Version Management
Understanding about git
Formation git
Git, github and the hacktober fest
Git and Github
GDSC PHCET x Hacktober .pptx
Git&GitHub.pptx
Gitgithub101slideshare 150922131830-lva1-app6891
Github
Git and GitHub
Git for standalone use
Git training (basic)
concordia hacktoberfest.pptx
Advanced Git Tutorial
Version controll.pptx
Git and github
Version control git day02
Github 101 An Adventurer's Guide To Open Source
Hacktoberfest 2021

Recently uploaded (20)

PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
L1 - Introduction to python Backend.pptx
PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
ai tools demonstartion for schools and inter college
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
Transform Your Business with a Software ERP System
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
System and Network Administraation Chapter 3
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
System and Network Administration Chapter 2
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Digital Strategies for Manufacturing Companies
Upgrade and Innovation Strategies for SAP ERP Customers
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
L1 - Introduction to python Backend.pptx
ManageIQ - Sprint 268 Review - Slide Deck
How to Migrate SBCGlobal Email to Yahoo Easily
Odoo POS Development Services by CandidRoot Solutions
Softaken Excel to vCard Converter Software.pdf
ai tools demonstartion for schools and inter college
PTS Company Brochure 2025 (1).pdf.......
Transform Your Business with a Software ERP System
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
System and Network Administraation Chapter 3
How to Choose the Right IT Partner for Your Business in Malaysia
Understanding Forklifts - TECH EHS Solution
Operating system designcfffgfgggggggvggggggggg
System and Network Administration Chapter 2
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Digital Strategies for Manufacturing Companies

Hacktoberfest 2022

  • 2. ● Month long event. ● Encourages participation of Open Source Software. ● Leads to personal growth, professional opportunities, and community building What is Hacktoberfest?
  • 3. How to participate in Hacktoberfest? - Register for Hacktoberfest through their website. - Have 4 pull/merge requests accepted between October 1 and October 31 to complete Hacktoberfest. - Participants will get swag kits according to hacktoberfest terms and conditions.
  • 4. What is Open Source? Open source itself states that code which is freely available for everyone and open for any modification and redistribution.
  • 5. Why Open Source? ● Working with teams will become cakewalk. ● Other interested folks can contribute. ● Help folks to connect and learn from different communities.
  • 10. Getting your machine ready - Git in personal machine (download it from the given QR) - A text editor - A GitHub account
  • 13. Initializing folder as a git repository ● Command: git init ● It will initialize the current directory into a git repository
  • 14. Cloning repository from remote to local ● Command: git clone <repository link> ● It will help us to copy the whole code which is stored on a git service (github) to our local.
  • 15. Staging changes ● Command: git add <filenames separated with spaces> ● Contributors have to stage their changes ● It will be helpful if individual want to push only some of the changes instead of the whole code.
  • 16. Checking Status of changes. ● Command: git status ● Gives the status of changed/staged files/not staged files.
  • 17. Committing your changes ● Command: git commit -m “commit message” ● Updates local repository with the staged changes. ● It will also help to track the history in future and revert it if needed.
  • 19. Pulling changes ● Command: git pull ● Used to update the local repository with remote repository.
  • 20. Pushing changes. ● Command: git push ● It will push the changes from local system to the remote repository.