Code Monkey home page Code Monkey logo

introduction-to-git-and-github-ebook's Introduction

πŸ’‘ Introduction to Git and GitHub

This is an open-source introduction to Git and GitHub guide that will help you learn the basics of version control and start using Git for your SysOps, DevOps, and Dev projects. No matter if you are a DevOps/SysOps engineer, developer, or just a Linux enthusiast, you can use Git to track your code changes and collaborate with other members of your team or open source maintainers.

The guide is suitable for anyone working as a developer, system administrator, or a DevOps engineer and wants to learn the basics of Git, GitHub and version control in general.

πŸš€ Download

To download a copy of the eBook use one of the following links:

πŸ“˜ Chapters

🌟 Sponsors

This book is made possible thanks to these fantastic companies!

πŸ’™ DigitalOcean

DigitalOcean is a cloud services platform delivering the simplicity developers love and businesses trust to run production applications at scale.

It provides highly available, secure, and scalable compute, storage, and networking solutions that help developers build great software faster.

Founded in 2012 with offices in New York and Cambridge, MA, DigitalOcean offers transparent and affordable pricing, an elegant user interface, and one of the largest libraries of open source resources available.

For more information, please visit https://www.digitalocean.com or follow @digitalocean on Twitter.

If you are new to DigitalOcean, you can get a free $100 credit and spin up your own servers via this referral link here:

Free $100 Credit For DigitalOcean

πŸ‘©β€πŸ’» DevDojo

The DevDojo is a resource to learn all things web development and web design. Learn on your lunch break or wake up and enjoy a cup of coffee with us to learn something new.

Join this developer community, and we can all learn together, build together, and grow together.

Join DevDojo

For more information, please visit https://www.devdojo.com or follow @thedevdojo on Twitter.

πŸ•ΈοΈ Web Page

A web page showcasing the eBook:

Introduction to Git and GitHub website

The web page was built using Tails, a new kick-ass drag-and-drop TailwindCSS page builder!

DigitalOcean App Platform

The will be hosted on the DigitalOcean App Platform.

We will utilize the "Deploy to DigitalOcean" Button to deploy to the App Platform:

Deploy to DO

πŸ“Ή Mini Video Course

If you prefer watching videos rather than reading, you can find a quick crash course based on the eBook here:

Introduction to Git and GitHub Mini Video Crash Course

πŸ’» Interactive training

You can follow the interactive training online here:

Interactive Git training

The training was built with Katacoda. You can find the Katacoda repository here.

For more information on how to use Katacoda make sure to follow the steps from this tutorial here:

How to Use Katacoda to Create Highly Engaging Training Tutorials

πŸ‘‹ About the author

My name is Bobby Iliev, and I have been working as a Linux DevOps Engineer since 2014. I am an avid Linux lover and supporter of the open-source movement philosophy. I am always doing that which I cannot do in order that I may learn how to do it, and I believe in sharing knowledge.

I think it's essential always to keep professional and surround yourself with good people, work hard, and be nice to everyone. You have to perform at a consistently higher level than others. That's the mark of a true professional.

For more information, please visit my blog at https://bobbyiliev.com, follow me on Twitter @bobbyiliev_ and YouTube.

In case that you want to support me you can Buy Me a Coffee here:

Buy Me A Coffee

πŸ”₯ PDF Generation Tool

The project uses Ibis developed by Mohamed Said.

Ibis is a PHP tool that helps you write eBooks in Markdown.

πŸ“• ePub Generation Tool

The ePub version was generated by Pandoc.

🎨 Book Cover

The cover for this eBook was created with Canva.com.

If you ever need to create a graphic, poster, invitation, logo, presentation – or anything that looks good β€” give Canva a go.

πŸ”— Links

πŸ“– Other eBooks

🀲 Contributing

If you are contributing 🍿 please read the contributing file before submitting your pull requests.

introduction-to-git-and-github-ebook's People

Contributors

andresayej avatar aryan31200 avatar bobbyiliev avatar candida18 avatar edent avatar elenajp avatar hamda-fizal avatar hssaluja25 avatar ignoreintuition avatar jacklagare avatar lucalves avatar matthevvv avatar mclbdn avatar moatsm-prog avatar mph7 avatar mustafaamer-1 avatar nikhil27b avatar nirzak avatar nishu91020 avatar palak-137 avatar rajatm544 avatar raphaelstolt avatar razasayy avatar riki-05 avatar rubjo avatar s4bbi avatar samuelmwangiw avatar sixdouglas avatar thititongumpun avatar tylerjusfly avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

introduction-to-git-and-github-ebook's Issues

Feature: Add "The mdkir command" to 004-basic-shell-commands.md

Is your feature request related to a problem? Please describe.

In chapter 004-basic-shell-commands.md, there is no mention of the mkdir command.

Describe the solution you'd like

Add another section called "The mdkir command" to 004-basic-shell-commands.md explaining how to use this command.

Additional context

Feature: A chapter on the 'git rebase' command.

Is your feature request related to a problem? Please describe.

A chapter about the git rebase command can be a helpful addition to the book. It helps delete commits from one branch and move them to another branch without much hassle, and can even be an alternative for the merge command in a few cases.

Describe the solution you'd like

Anyone looking to contribute can send a PR for adding this chapter, it'll be helpful in your hacktoberfest journey as well! For more details about the command, read up https://git-scm.com/docs/git-rebase or https://www.atlassian.com/git/tutorials/rewriting-history/git-rebase

Additional context

This can be a great start for people contributing for the first time! In case this issue remains open for a couple of days, I'll be happy to contribute a chapter for this command.

Feature: Translating the E-book

Dear @bobbyiliev ,

I trust this message finds you in good health. I have come across your E-book document, and I would like to offer my assistance in translating it into Hindi. I discovered this opportunity during Hacktoberfest, and I am keen to contribute under that specific tag.

Please consider assigning this task to me, and I will ensure a professional and accurate translation.

Warm regards,
Somuya Khandelwal

Feature: Git stash

Is your feature request related to a problem? Please describe.

git stash is a powerful feature that comes in clutch many a times and are surprised it's not been added yet.
It allows one to save local modifications away and revert the working directory to match the HEAD commit e.g when pulling remote changes that may conflict local changes that are not ready to merge, issue a bug fix, etc.

Describe the solution you'd like

Anyone seeking to contribute to the book and in search for an idea for a hactoberfest PR, kindly read up git stash here https://git-scm.com/docs/git-stash

Additional context

If this issue is still open in a few days, I will PR a write up but would wish the offer is taken up by first-time contributors.

Add github profile section

Hi,

I think it would be a nice idea to add a section on how to create a github profile which is useful when looking for a job too as it is like a resume. If you think this is a good idea, let me know and I will get started ✌️

Elena πŸ˜€

Feature: Add "How to pin repositories to your profile" to 997-create-your-github-profile.md

Is your feature request related to a problem? Please describe.

Chapter 997-create-your-github-profile.md doesn't mention how to pin to your profile repositories of yours you are the most proud of. I found this feature very helpful when it comes to presenting my portfolio to potential employers.

Describe the solution you'd like

Add another section called "Pin repositories to your GitHub profile" to 997-create-your-github-profile.md explaining how to pin your favourite repositories.

Additional context

Feature: talk about conflicts

I would like to add a section about the conflit management. I guess I can add something in the diff section but I would rather add it as a complete chapter.
Is it possible to renumber all files? because adding it at the end would not make much sens.
What do you think?

Feature: Linking chapter in "Chapters" section

Is your feature request related to a problem? Please describe.

The readme file and website is only listing chapters of the book.

Describe the solution you'd like

Link those chapters to introduction-to-git-and-github-ebook/ebook/en/content/ folder of repository to provide better accessibility to readers.

Additional context

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.